/**
 * Locations Hub — Full Stylesheet
 * Scope: .fp-locations-hub and .fp-* utility classes.
 *
 * Brand tokens
 *   Primary dark:  #101113
 *   Body text:     #5C5F66
 *   Purple:        #7A4FF7
 *   Purple hover:  #632EF4
 *   Hero bg:       #0B0D14
 *   Border:        #E9ECEF
 *   Radius:        0  (square corners throughout)
 *   Headings:      Archivo, sans-serif
 *   Body:          Inter, sans-serif
 *
 * Section order mirrors page template:
 *   1  Hero
 *   2  Filterbar
 *   3  Map
 *   4  Grid
 *   5  Jobs-switcher
 *   6  Plan matrix
 *   7  Trust
 *   8  FAQ
 *   9  Final CTA
 *   Utilities
 */

/* ============================================================
   GLOBAL RESET FOR THIS SCOPE
   ============================================================ */

.fp-locations-hub *,
.fp-locations-hub *::before,
.fp-locations-hub *::after {
	box-sizing: border-box;
}

/* ============================================================
   CONTAINER
   ============================================================ */

.fp-container {
	width: 100%;
	max-width: 1200px;
	margin-inline: auto;
	padding-inline: 24px;
}

/* ============================================================
   SECTION HEADS (shared pattern)
   ============================================================ */

.fp-section-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 48px;
}

.fp-section-head h2 {
	font-family: Archivo, sans-serif;
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	font-weight: 700;
	line-height: 1.15;
	color: #101113;
	margin: 0 0 12px;
}

.fp-section-head p {
	font-family: Inter, sans-serif;
	font-size: 1.0625rem;
	color: #5C5F66;
	margin: 0;
	max-width: 580px;
}

/* ============================================================
   1. HERO
   ============================================================ */

.fp-hero {
	background-color: #0B0D14;
	padding: 96px 0 80px;
	text-align: center;
}

.fp-eyebrow {
	display: inline-block;
	font-family: Inter, sans-serif;
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #7A4FF7;
	margin-bottom: 20px;
}

.fp-eyebrow-light {
	color: #a887ff;
}

.fp-hero h1 {
	font-family: Archivo, sans-serif;
	font-size: clamp(2.25rem, 5vw, 3.75rem);
	font-weight: 800;
	line-height: 1.1;
	color: #fff;
	margin: 0 auto 24px;
	max-width: 820px;
}

.fp-grad-text {
	background: linear-gradient(135deg, #7A4FF7 0%, #a56fff 60%, #c89fff 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.fp-hero p {
	font-family: Inter, sans-serif;
	font-size: 1.125rem;
	line-height: 1.65;
	color: #a0a4b0;
	max-width: 640px;
	margin: 0 auto 36px;
}

/* Trust pills */
.fp-trust-pills {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
}

.fp-trust-pill {
	font-family: Inter, sans-serif;
	font-size: 0.8125rem;
	font-weight: 500;
	color: #d4d6de;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.12);
	padding: 6px 14px;
	border-radius: 0;
}

/* ============================================================
   2. FILTERBAR
   ============================================================ */

.fp-filterbar-wrap {
	background: #fff;
	border-bottom: 1px solid #E9ECEF;
	position: sticky;
	top: 75px;
	z-index: 100;
	transition: box-shadow 0.2s ease;
}

.fp-filterbar-wrap.is-stuck {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.fp-filterbar {
	padding: 16px 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.fp-filterbar-row {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

/* Search input */
.fp-search-input {
	font-family: Inter, sans-serif;
	font-size: 0.9375rem;
	color: #101113;
	background: #fff;
	border: 1px solid #E9ECEF;
	border-radius: 0;
	padding: 9px 14px;
	flex: 1 1 240px;
	min-width: 0;
	outline: none;
	transition: border-color 0.15s ease;
}

.fp-search-input::placeholder {
	color: #adb0b8;
}

.fp-search-input:focus-visible {
	border-color: #7A4FF7;
	box-shadow: 0 0 0 3px rgba(122, 79, 247, 0.18);
}

/* Country select */
.fp-country-select {
	font-family: Inter, sans-serif;
	font-size: 0.9375rem;
	color: #101113;
	background: #fff;
	border: 1px solid #E9ECEF;
	border-radius: 0;
	padding: 9px 36px 9px 12px;
	appearance: none;
	-webkit-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%235C5F66' stroke-width='1.5'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 10px center;
	background-size: 16px;
	cursor: pointer;
	outline: none;
	transition: border-color 0.15s ease;
}

.fp-country-select:focus-visible {
	border-color: #7A4FF7;
	box-shadow: 0 0 0 3px rgba(122, 79, 247, 0.18);
}

/* Result counter */
.fp-result-counter {
	font-family: Inter, sans-serif;
	font-size: 0.875rem;
	color: #5C5F66;
	margin: 0;
	white-space: nowrap;
}

/* Chip label */
.fp-chip-label {
	font-family: Inter, sans-serif;
	font-size: 0.8125rem;
	font-weight: 600;
	color: #5C5F66;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	min-width: 36px;
}

/* Filter chips */
.fp-chip-group {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.fp-chip {
	font-family: Inter, sans-serif;
	font-size: 0.875rem;
	font-weight: 500;
	color: #5C5F66;
	background: #fff;
	border: 1px solid #E9ECEF;
	border-radius: 0;
	padding: 6px 14px;
	cursor: pointer;
	transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease;
	white-space: nowrap;
}

.fp-chip:hover {
	border-color: #7A4FF7;
	color: #7A4FF7;
}

.fp-chip[aria-pressed="true"] {
	background: #7A4FF7;
	border-color: #7A4FF7;
	color: #fff;
}

.fp-chip:focus-visible {
	outline: 3px solid #7A4FF7;
	outline-offset: 2px;
}

/* Clear button */
.fp-clear-btn {
	font-family: Inter, sans-serif;
	font-size: 0.875rem;
	font-weight: 500;
	color: #7A4FF7;
	background: transparent;
	border: none;
	padding: 6px 4px;
	cursor: pointer;
	text-decoration: underline;
	margin-left: auto;
	transition: color 0.15s ease;
}

.fp-clear-btn:hover {
	color: #632EF4;
}

.fp-clear-btn:focus-visible {
	outline: 3px solid #7A4FF7;
	outline-offset: 2px;
}

/* ============================================================
   3. MAP
   ============================================================ */

.fp-map-section {
	padding: 48px 0;
	background: #f8f9fb;
	border-bottom: 1px solid #E9ECEF;
}

.fp-map-section .fp-section-head {
	align-items: center;
	margin-bottom: 24px;
}

.fp-map-section .fp-section-head h2 {
	margin-bottom: 4px;
}

.fp-map-toggle {
	font-family: Inter, sans-serif;
	font-size: 0.875rem;
	font-weight: 500;
	color: #7A4FF7;
	background: transparent;
	border: 1px solid #7A4FF7;
	padding: 8px 18px;
	cursor: pointer;
	white-space: nowrap;
	transition: background 0.15s ease, color 0.15s ease;
	border-radius: 0;
	flex-shrink: 0;
}

.fp-map-toggle:hover {
	background: #7A4FF7;
	color: #fff;
}

.fp-map-toggle:focus-visible {
	outline: 3px solid #7A4FF7;
	outline-offset: 2px;
}

#fp-map {
	width: 100%;
	background: #e6e8ec;
	border: 1px solid #E9ECEF;
}

/* Static map: pre-rendered Google Static Map PNG + transparent hover overlay pins */
.fp-static-map {
	position: relative;
	aspect-ratio: 2 / 1;
	overflow: hidden;
	background: #1e2230;
	border: 1px solid #2a2f3d;
}
.fp-static-map__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	pointer-events: none;
}
/*
 * Pins sit on top of the PNG's already-drawn purple markers. They are
 * invisible by default (the PNG shows the pin), and only light up on
 * hover/focus to provide a click target and the active-pin highlight ring.
 */
.fp-static-pin {
	position: absolute;
	width: 28px;
	height: 28px;
	margin: -14px 0 0 -14px; /* center on (left,top) */
	border: 0;
	padding: 0;
	background: transparent;
	border-radius: 50%;
	cursor: pointer;
	transition: background 0.15s ease, box-shadow 0.15s ease;
}
.fp-static-pin:hover,
.fp-static-pin:focus-visible,
.fp-static-pin.is-active {
	background: rgba(122,79,247,0.35);
	box-shadow: 0 0 0 3px rgba(122,79,247,0.7);
	outline: none;
	z-index: 2;
}
.fp-static-pin.is-hidden {
	display: none;
}
.fp-map-section.is-collapsed .fp-static-map {
	display: none;
}
.fp-card.is-pin-active {
	box-shadow: 0 0 0 2px #7A4FF7, 0 12px 12px 0 rgba(218,218,218,0.5);
	transform: translateY(-4px);
}
@media (prefers-reduced-motion: reduce) {
	.fp-static-pin,
	.fp-card.is-pin-active {
		transition: none;
		transform: none;
	}
}

/* ============================================================
   4. GRID
   ============================================================ */

.fp-grid-section {
	padding: 80px 0;
}

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

/* Location card */
.fp-card {
	background: #fff;
	border: 1px solid #E9ECEF;
	border-radius: 0;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fp-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.09);
}

/* Card image */
.fp-card-img {
	position: relative;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background-color: #e6e8ec;
}

.fp-card-flag {
	position: absolute;
	top: 10px;
	left: 10px;
	font-family: Inter, sans-serif;
	font-size: 0.75rem;
	font-weight: 600;
	color: #fff;
	background: rgba(11, 13, 20, 0.65);
	padding: 3px 8px;
	border-radius: 0;
	backdrop-filter: blur(4px);
}

/* Card body */
.fp-card-body {
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	flex: 1;
}

.fp-card-title {
	font-family: Archivo, sans-serif;
	font-size: 1.0625rem;
	font-weight: 700;
	color: #101113;
	margin: 0;
	line-height: 1.25;
}

.fp-card-region {
	font-family: Inter, sans-serif;
	font-size: 0.8125rem;
	color: #7A4FF7;
	font-weight: 600;
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.fp-card-address {
	font-family: Inter, sans-serif;
	font-size: 0.875rem;
	color: #5C5F66;
	margin: 0;
}

.fp-card-bestfor {
	font-family: Inter, sans-serif;
	font-size: 0.875rem;
	color: #5C5F66;
	margin: 4px 0 0;
	padding-left: 10px;
	border-left: 3px solid #7A4FF7;
	line-height: 1.5;
}

.fp-card-bestfor strong {
	color: #101113;
}

/* Plan chips on cards */
.fp-card-plans {
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
	margin-top: 8px;
}

.fp-plan-chip {
	font-family: Inter, sans-serif;
	font-size: 0.75rem;
	font-weight: 500;
	color: #adb0b8;
	background: #f4f5f7;
	border: 1px solid #E9ECEF;
	padding: 3px 10px;
	border-radius: 0;
}

.fp-plan-chip.is-active {
	color: #101113;
	background: #101113;
	border-color: #101113;
	color: #fff;
}

/* Card price */
.fp-card-price {
	font-family: Inter, sans-serif;
	font-size: 0.9375rem;
	color: #5C5F66;
	margin: 4px 0 0;
}

.fp-card-price strong {
	color: #101113;
}

/* Card CTAs */
.fp-card-ctas {
	display: flex;
	gap: 10px;
	margin-top: auto;
	padding-top: 16px;
}

/* Shared button base */
.fp-btn {
	font-family: Inter, sans-serif;
	font-size: 0.875rem;
	font-weight: 600;
	text-decoration: none;
	padding: 9px 18px;
	border-radius: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
	white-space: nowrap;
}

.fp-btn:focus-visible {
	outline: 3px solid #7A4FF7;
	outline-offset: 2px;
}

/* Ghost button */
.fp-btn-ghost {
	color: #101113;
	background: transparent;
	border: 1px solid #E9ECEF;
}

.fp-btn-ghost:hover {
	border-color: #101113;
	color: #101113;
}

/* Primary gradient button */
.fp-btn-primary {
	color: #fff;
	background: linear-gradient(135deg, #7A4FF7 0%, #632EF4 100%);
	border: 1px solid transparent;
}

.fp-btn-primary:hover {
	background: linear-gradient(135deg, #632EF4 0%, #5120d6 100%);
}

/* Empty state */
.fp-empty-state {
	grid-column: 1 / -1;
	text-align: center;
	padding: 64px 24px;
	font-family: Inter, sans-serif;
	font-size: 1rem;
	color: #5C5F66;
}

.fp-empty-state a {
	color: #7A4FF7;
	text-decoration: underline;
	margin-left: 6px;
}

/* ============================================================
   5. JOBS-SWITCHER
   ============================================================ */

.fp-jobs-section {
	padding: 80px 0;
	background: #f8f9fb;
	border-top: 1px solid #E9ECEF;
	border-bottom: 1px solid #E9ECEF;
}

.fp-jobs-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.fp-job-tile {
	background: #fff;
	border: 1px solid #E9ECEF;
	border-radius: 0;
	padding: 28px 24px;
	text-align: left;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	gap: 12px;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
	width: 100%;
}

.fp-job-tile:hover {
	border-color: #7A4FF7;
	box-shadow: 0 8px 24px rgba(122, 79, 247, 0.12);
	transform: translateY(-2px);
}

.fp-job-tile[aria-pressed="true"] {
	border-color: #7A4FF7;
	background: #faf8ff;
	box-shadow: 0 0 0 3px rgba(122, 79, 247, 0.2);
}

.fp-job-tile:focus-visible {
	outline: 3px solid #7A4FF7;
	outline-offset: 2px;
}

.fp-job-icon {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	color: #7A4FF7;
	line-height: 1;
}

.fp-job-tile h3 {
	font-family: Archivo, sans-serif;
	font-size: 1.0625rem;
	font-weight: 700;
	color: #101113;
	margin: 0;
	line-height: 1.25;
}

.fp-job-tile p {
	font-family: Inter, sans-serif;
	font-size: 0.9rem;
	color: #5C5F66;
	margin: 0;
	line-height: 1.55;
	flex: 1;
}

.fp-job-tile-cta {
	font-family: Inter, sans-serif;
	font-size: 0.875rem;
	font-weight: 600;
	color: #7A4FF7;
	margin-top: auto;
	transition: color 0.15s ease;
}

.fp-job-tile:hover .fp-job-tile-cta {
	color: #632EF4;
}

/* ============================================================
   6. PLAN MATRIX
   ============================================================ */

.fp-matrix-section {
	padding: 80px 0;
}

.fp-matrix-wrap {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.fp-matrix {
	width: 100%;
	border-collapse: collapse;
	font-family: Inter, sans-serif;
	font-size: 0.9375rem;
}

/* Column headers */
.fp-matrix-th {
	padding: 16px 20px;
	background: #f8f9fb;
	border: 1px solid #E9ECEF;
	text-align: center;
	font-family: Archivo, sans-serif;
	font-weight: 700;
	color: #101113;
}

.fp-matrix-th--feature {
	text-align: left;
	width: 46%;
}

.fp-matrix-th a {
	color: inherit;
	text-decoration: none;
	display: block;
}

.fp-matrix-th a:hover {
	color: #7A4FF7;
}

.fp-matrix-note {
	display: block;
	font-family: Inter, sans-serif;
	font-size: 0.8125rem;
	font-weight: 500;
	color: #7A4FF7;
	margin-top: 2px;
}

/* Body cells */
.fp-matrix-row:nth-child(even) .fp-matrix-label,
.fp-matrix-row:nth-child(even) .fp-matrix-cell {
	background: #fafafa;
}

.fp-matrix-label {
	padding: 14px 20px;
	border: 1px solid #E9ECEF;
	color: #5C5F66;
	text-align: left;
	line-height: 1.5;
}

.fp-matrix-cell {
	padding: 14px 20px;
	border: 1px solid #E9ECEF;
	text-align: center;
	width: 18%;
}

.fp-matrix-check {
	font-size: 1.125rem;
	color: #7A4FF7;
	font-weight: 700;
}

.fp-matrix-dash {
	font-size: 1.125rem;
	color: #c8cace;
}

/* Caption below table */
.fp-matrix-caption {
	font-family: Inter, sans-serif;
	font-size: 0.9rem;
	color: #5C5F66;
	margin-top: 20px;
	text-align: center;
}

.fp-matrix-caption a {
	color: #7A4FF7;
	font-weight: 600;
	text-decoration: underline;
}

.fp-matrix-caption a:hover {
	color: #632EF4;
}

/* ============================================================
   7. TRUST SECTION
   ============================================================ */

.fp-trust-section {
	padding: 80px 0;
	background: #f8f9fb;
	border-top: 1px solid #E9ECEF;
	border-bottom: 1px solid #E9ECEF;
}

.fp-trust-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: center;
}

/* Video placeholder */
.fp-trust-video {
	position: relative;
	aspect-ratio: 16 / 9;
	background: #1a1d27;
	overflow: hidden;
	cursor: pointer;
}

.fp-play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 64px;
	height: 64px;
	background: rgba(122, 79, 247, 0.85);
	border: none;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease, transform 0.2s ease;
}

.fp-play-btn::after {
	content: '';
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 12px 0 12px 20px;
	border-color: transparent transparent transparent #fff;
	margin-left: 4px;
}

.fp-play-btn:hover {
	background: rgba(99, 46, 244, 0.95);
	transform: translate(-50%, -50%) scale(1.08);
}

.fp-play-btn:focus-visible {
	outline: 3px solid #fff;
	outline-offset: 3px;
}

/* Trust checklist */
.fp-trust-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.fp-trust-item {
	display: flex;
	gap: 14px;
	align-items: flex-start;
}

.fp-trust-check {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	background: #7A4FF7;
	color: #fff;
	font-size: 0.875rem;
	font-weight: 700;
	flex-shrink: 0;
	border-radius: 0;
	margin-top: 1px;
}

.fp-trust-item-text {
	font-family: Inter, sans-serif;
	font-size: 0.9375rem;
	color: #5C5F66;
	line-height: 1.6;
}

.fp-trust-item-text strong {
	display: block;
	font-weight: 700;
	color: #101113;
	margin-bottom: 2px;
}

/* ============================================================
   8. FAQ
   ============================================================ */

.fp-faq-section {
	padding: 80px 0;
}

.fp-faq-list {
	max-width: 780px;
	margin-inline: auto;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.fp-faq-item {
	border-bottom: 1px solid #E9ECEF;
}

.fp-faq-item:first-child {
	border-top: 1px solid #E9ECEF;
}

.fp-faq-q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 0;
	cursor: pointer;
	font-family: Archivo, sans-serif;
	font-size: 1.0625rem;
	font-weight: 600;
	color: #101113;
	list-style: none;
	user-select: none;
}

.fp-faq-q::-webkit-details-marker {
	display: none;
}

.fp-faq-q:focus-visible {
	outline: 3px solid #7A4FF7;
	outline-offset: 2px;
}

/* Plus/minus icon */
.fp-faq-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	flex-shrink: 0;
	position: relative;
}

.fp-faq-icon::before,
.fp-faq-icon::after {
	content: '';
	position: absolute;
	background: #7A4FF7;
	border-radius: 0;
	transition: transform 0.22s ease, opacity 0.22s ease;
}

/* Horizontal bar */
.fp-faq-icon::before {
	width: 14px;
	height: 2px;
}

/* Vertical bar — rotates to 0 when open (becomes minus) */
.fp-faq-icon::after {
	width: 2px;
	height: 14px;
}

.fp-faq-item[open] .fp-faq-icon::after {
	transform: rotate(90deg);
	opacity: 0;
}

.fp-faq-a {
	font-family: Inter, sans-serif;
	font-size: 0.9375rem;
	color: #5C5F66;
	line-height: 1.65;
	padding: 0 0 20px;
	max-width: 680px;
}

/* ============================================================
   9. FINAL CTA
   ============================================================ */

.fp-final-cta {
	background: #0B0D14;
	padding: 96px 0;
	text-align: center;
	position: relative;
	overflow: hidden;
}

/* Radial glow */
.fp-final-cta::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 600px;
	height: 400px;
	background: radial-gradient(ellipse at center, rgba(122, 79, 247, 0.22) 0%, transparent 70%);
	pointer-events: none;
}

.fp-final-cta-inner {
	position: relative;
	z-index: 1;
}

.fp-final-cta h2 {
	font-family: Archivo, sans-serif;
	font-size: clamp(1.75rem, 3.5vw, 2.75rem);
	font-weight: 800;
	color: #fff;
	margin: 16px auto 20px;
	max-width: 720px;
	line-height: 1.15;
}

.fp-final-cta p {
	font-family: Inter, sans-serif;
	font-size: 1.0625rem;
	color: #a0a4b0;
	margin: 0 auto 36px;
	max-width: 520px;
	line-height: 1.6;
}

/* Large CTA button */
.fp-cta-large {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: Archivo, sans-serif;
	font-size: 1.0625rem;
	font-weight: 700;
	color: #fff;
	background: linear-gradient(135deg, #7A4FF7 0%, #632EF4 100%);
	border: none;
	padding: 16px 36px;
	border-radius: 0;
	text-decoration: none;
	cursor: pointer;
	transition: background 0.18s ease, transform 0.18s ease;
}

.fp-cta-large:hover {
	background: linear-gradient(135deg, #632EF4 0%, #5120d6 100%);
	transform: translateY(-2px);
}

.fp-cta-large:focus-visible {
	outline: 3px solid #fff;
	outline-offset: 3px;
}

/* Phone line */
.fp-final-phone {
	font-family: Inter, sans-serif;
	font-size: 0.9375rem;
	color: #7a7f91;
	margin: 24px auto 0;
}

.fp-final-phone a {
	color: #a887ff;
	font-weight: 600;
	text-decoration: none;
}

.fp-final-phone a:hover {
	color: #fff;
}

/* ============================================================
   UTILITIES
   ============================================================ */

/* Screen reader only */
.fp-sr-only,
.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* Screen reader only — visible on focus */
.fp-sr-only-focusable:focus,
.fp-sr-only-focusable:focus-visible {
	position: static;
	width: auto;
	height: auto;
	padding: 8px 14px;
	margin: 0;
	overflow: visible;
	clip: auto;
	white-space: normal;
	background: #7A4FF7;
	color: #fff;
	font-family: Inter, sans-serif;
	font-size: 0.875rem;
	font-weight: 600;
	text-decoration: none;
	display: inline-block;
}

/* Skip map link */
.fp-skip-map {
	display: block;
}

/* ============================================================
   FOCUS-VISIBLE GLOBAL OVERRIDES (scope-safe)
   ============================================================ */

.fp-locations-hub :focus-visible {
	outline: 3px solid #7A4FF7;
	outline-offset: 2px;
}

/* ============================================================
   RESPONSIVE — 2 columns at 900px
   ============================================================ */

@media (max-width: 900px) {

	.fp-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.fp-jobs-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.fp-trust-grid {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.fp-section-head {
		flex-direction: column;
		gap: 16px;
	}

	.fp-matrix-th--feature {
		width: auto;
		min-width: 180px;
	}

}

/* ============================================================
   RESPONSIVE — 1 column at 600px
   ============================================================ */

@media (max-width: 600px) {

	.fp-container {
		padding-inline: 16px;
	}

	.fp-hero {
		padding: 64px 0 56px;
	}

	.fp-hero h1 {
		font-size: 2rem;
	}

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

	.fp-jobs-grid {
		grid-template-columns: 1fr;
	}

	.fp-filterbar-wrap {
		top: 0;
	}

	.fp-card-ctas {
		flex-direction: column;
	}

	.fp-matrix-cell,
	.fp-matrix-label,
	.fp-matrix-th {
		padding: 12px 12px;
		font-size: 0.8125rem;
	}

}

/* ============================================================
   PREFERS-REDUCED-MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {

	.fp-card,
	.fp-job-tile,
	.fp-btn,
	.fp-chip,
	.fp-cta-large,
	.fp-play-btn,
	.fp-map-toggle,
	.fp-faq-icon::before,
	.fp-faq-icon::after {
		transition: none;
	}

	.fp-card:hover,
	.fp-job-tile:hover,
	.fp-cta-large:hover {
		transform: none;
	}

}
