:root {
	--po-bg: #f4f7fb;
	--po-surface: #ffffff;
	--po-text: #1e293b;
	--po-muted: #64748b;
	--po-primary: #1a237e;
	--po-primary-dark: #0d1642;
	--po-accent: #1565c0;
	--po-accent-soft: #e3f2fd;
	--po-border: #e2e8f0;
	--po-radius: 16px;
	--po-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
	--po-wrap: 1120px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	color: var(--po-text);
	background: var(--po-bg);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

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

a {
	color: var(--po-accent);
}

.po-wrap {
	width: min(var(--po-wrap), calc(100% - 32px));
	margin-inline: auto;
}

/* Header */
.po-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--po-border);
}

.po-header > .po-wrap {
	width: min(1200px, calc(100% - 32px));
}

.po-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	gap: 24px;
	min-height: 72px;
}

.po-brand {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	flex: 0 0 auto;
	min-width: 0;
}

.po-brand img {
	width: 44px;
	height: 44px;
	object-fit: contain;
	flex-shrink: 0;
	display: block;
}

.po-brand-name {
	font-size: 14px;
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: 0.03em;
	color: var(--po-primary);
	text-transform: uppercase;
	white-space: nowrap;
}

.po-header-end {
	display: flex;
	align-items: center;
	flex: 0 1 auto;
	min-width: 0;
}

.po-nav {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	justify-content: flex-end;
	gap: 2px;
}

.po-nav-link {
	color: var(--po-text);
	text-decoration: none;
	font-weight: 600;
	font-size: 13px;
	background: none;
	border: 0;
	font-family: inherit;
	cursor: pointer;
	padding: 8px 9px;
	border-radius: 8px;
	white-space: nowrap;
	line-height: 1.2;
}

.po-nav-link:hover,
.po-nav-trigger[aria-expanded="true"] {
	color: var(--po-accent);
	background: var(--po-accent-soft);
}

.po-header-actions {
	display: flex;
	align-items: center;
	gap: 10px;
	flex: 0 0 auto;
	margin-left: 20px;
	padding-left: 20px;
	border-left: 1px solid var(--po-border);
}

.po-nav-cta {
	background: var(--po-primary);
	color: #fff !important;
	padding: 9px 18px;
	border-radius: 999px;
	margin-left: 0;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	white-space: nowrap;
	line-height: 1.2;
}

.po-nav-cta:hover {
	background: var(--po-primary-dark);
	color: #fff !important;
}

.po-header-whatsapp {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	width: 38px;
	height: 38px;
	padding: 0;
	border-radius: 50%;
	background: #25d366;
	color: #fff !important;
	text-decoration: none;
	font-weight: 600;
	font-size: 0;
	flex-shrink: 0;
}

.po-header-whatsapp:hover {
	background: #1da851;
	color: #fff !important;
}

.po-icon-whatsapp {
	width: 18px;
	height: 18px;
	fill: currentColor;
	flex-shrink: 0;
}

.po-header-whatsapp-label {
	display: none;
}

.po-nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	background: none;
	border: 0;
	padding: 8px;
	cursor: pointer;
	flex-shrink: 0;
}

.po-nav-has-mega {
	position: relative;
}

.po-chevron {
	font-size: 11px;
	opacity: 0.7;
}

.po-mega {
	display: none;
	position: absolute;
	top: calc(100% + 8px);
	left: 50%;
	transform: translateX(-50%);
	min-width: 560px;
	background: #fff;
	border: 1px solid var(--po-border);
	border-radius: var(--po-radius);
	box-shadow: var(--po-shadow);
	padding: 20px;
	z-index: 200;
}

.po-nav-has-mega.is-open .po-mega,
.po-nav-has-mega:focus-within .po-mega {
	display: block;
}

.po-mega-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

.po-mega-heading {
	margin: 0 0 10px;
	font-weight: 800;
	font-size: 14px;
}

.po-mega-heading a {
	color: var(--po-primary);
	text-decoration: none;
}

.po-mega-links {
	list-style: none;
	margin: 0;
	padding: 0;
}

.po-mega-links li {
	margin-bottom: 8px;
}

.po-mega-links a {
	color: var(--po-muted);
	text-decoration: none;
	font-size: 13px;
	font-weight: 500;
}

.po-mega-links a:hover {
	color: var(--po-accent);
}

.po-nav-toggle span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--po-text);
	border-radius: 2px;
}

/* Hero */
.po-hero {
	padding: 72px 0 56px;
	background:
		radial-gradient(circle at top right, rgba(21, 101, 192, 0.12), transparent 45%),
		linear-gradient(180deg, #fff 0%, var(--po-bg) 100%);
}

.po-hero-grid {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 36px;
	align-items: center;
}

.po-hero-media,
.po-page-hero-grid .po-hero-media {
	border-radius: var(--po-radius);
	overflow: hidden;
	border: 1px solid var(--po-border);
	box-shadow: var(--po-shadow);
	background: var(--po-surface);
}

.po-hero-media img {
	width: 100%;
	height: auto;
	min-height: 280px;
	max-height: 420px;
	object-fit: cover;
	display: block;
}

.po-page-hero-grid {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 36px;
	align-items: center;
}

.po-page-hero-copy .po-lead {
	margin-bottom: 0;
}

.po-kicker {
	margin: 0 0 10px;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--po-accent);
}

.po-hero h1 {
	margin: 0 0 16px;
	font-size: clamp(2rem, 4vw, 3rem);
	line-height: 1.15;
	color: var(--po-primary);
}

.po-lead {
	margin: 0 0 24px;
	font-size: 18px;
	color: var(--po-muted);
	max-width: 56ch;
}

.po-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.po-hero-cards {
	display: grid;
	gap: 14px;
}

.po-stat-card {
	background: var(--po-surface);
	border: 1px solid var(--po-border);
	border-radius: var(--po-radius);
	padding: 18px 20px;
	box-shadow: var(--po-shadow);
}

.po-stat-card strong {
	display: block;
	font-size: 16px;
	margin-bottom: 4px;
	color: var(--po-primary);
}

.po-stat-card span {
	color: var(--po-muted);
	font-size: 14px;
}

/* Buttons */
.po-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 20px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 14px;
	text-decoration: none;
	border: 2px solid transparent;
	transition: 0.2s ease;
}

.po-btn-primary {
	background: var(--po-primary);
	color: #fff;
}

.po-btn-primary:hover {
	background: var(--po-primary-dark);
	color: #fff;
}

.po-btn-secondary {
	background: #fff;
	color: var(--po-primary);
	border-color: var(--po-border);
}

.po-btn-secondary:hover {
	border-color: var(--po-accent);
	color: var(--po-accent);
}

.po-btn-ghost {
	background: transparent;
	color: var(--po-primary);
	border-color: var(--po-primary);
}

.po-btn-ghost:hover {
	background: var(--po-accent-soft);
}

.po-btn-light {
	background: #fff;
	color: var(--po-primary);
}

/* Sections */
.po-section {
	padding: 72px 0;
}

.po-section-muted {
	background: #eef2f7;
}

.po-section h2 {
	margin: 0 0 12px;
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	color: var(--po-primary);
}

.po-section-lead {
	margin: 0 0 28px;
	color: var(--po-muted);
	max-width: 60ch;
}

.po-grid {
	display: grid;
	gap: 20px;
}

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

.po-card {
	background: var(--po-surface);
	border: 1px solid var(--po-border);
	border-radius: var(--po-radius);
	padding: 24px;
	box-shadow: var(--po-shadow);
}

.po-card-icon {
	font-size: 28px;
	margin-bottom: 12px;
}

.po-card h3 {
	margin: 0 0 8px;
	color: var(--po-primary);
}

.po-card p {
	margin: 0;
	color: var(--po-muted);
}

.po-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
	align-items: start;
}

.po-checklist {
	margin: 20px 0 0;
	padding: 0;
	list-style: none;
}

.po-checklist li {
	position: relative;
	padding-left: 28px;
	margin-bottom: 12px;
}

.po-checklist li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 0;
	color: #15803d;
	font-weight: 800;
}

.po-portal-panel {
	background: var(--po-primary);
	color: #fff;
	border-radius: var(--po-radius);
	padding: 28px;
	box-shadow: var(--po-shadow);
}

.po-portal-panel h3 {
	margin: 0 0 10px;
}

.po-portal-panel p {
	margin: 0 0 18px;
	color: rgba(255, 255, 255, 0.85);
}

.po-portal-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.po-portal-links .po-btn-primary {
	background: #fff;
	color: var(--po-primary);
}

.po-portal-links .po-btn-ghost {
	color: #fff;
	border-color: rgba(255, 255, 255, 0.6);
}

.po-quote {
	margin: 0;
	padding: 22px;
	background: var(--po-surface);
	border-left: 4px solid var(--po-accent);
	border-radius: 12px;
	color: var(--po-muted);
	font-style: italic;
}

.po-faq details {
	background: var(--po-surface);
	border: 1px solid var(--po-border);
	border-radius: 12px;
	padding: 16px 18px;
	margin-bottom: 10px;
}

.po-faq summary {
	cursor: pointer;
	font-weight: 700;
	color: var(--po-primary);
}

.po-faq p {
	margin: 10px 0 0;
	color: var(--po-muted);
}

.po-cta-band {
	padding: 56px 0;
	background: linear-gradient(135deg, var(--po-primary) 0%, #283593 100%);
	color: #fff;
}

.po-cta-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.po-cta-inner h2 {
	margin: 0 0 8px;
	color: #fff;
}

.po-cta-inner p {
	margin: 0;
	color: rgba(255, 255, 255, 0.85);
}

.po-page h1 {
	margin-top: 0;
	color: var(--po-primary);
}

.po-content > *:first-child {
	margin-top: 0;
}

/* Page hero */
.po-page-hero {
	padding: 56px 0 40px;
	background: linear-gradient(180deg, #fff 0%, var(--po-bg) 100%);
	border-bottom: 1px solid var(--po-border);
}

.po-page-hero h1 {
	margin: 0 0 12px;
	font-size: clamp(1.8rem, 3.5vw, 2.6rem);
	color: var(--po-primary);
}

.po-page-hero-amc .po-price-badge {
	margin: 16px 0 0;
	display: inline-block;
	background: var(--po-accent-soft);
	color: var(--po-primary);
	padding: 10px 16px;
	border-radius: 999px;
	font-size: 15px;
}

.po-page-hero-amc .po-price-badge strong {
	font-size: 18px;
}

/* Service pages */
.po-section-head {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 24px;
}

.po-section-icon {
	font-size: 28px;
}

.po-service-stack,
.po-sales-stack {
	display: grid;
	gap: 28px;
}

.po-service-block,
.po-sales-block {
	background: var(--po-surface);
	border: 1px solid var(--po-border);
	border-radius: var(--po-radius);
	padding: 24px 26px;
	box-shadow: var(--po-shadow);
}

.po-service-block h3,
.po-sales-block h2 {
	margin: 0 0 14px;
	color: var(--po-primary);
	font-size: 1.25rem;
}

.po-sub-list {
	margin: 0;
	padding-left: 20px;
	color: var(--po-muted);
}

.po-sub-list li {
	margin-bottom: 8px;
}

.po-visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.po-services-picker {
	padding-top: 28px;
	padding-bottom: 12px;
}

.po-service-tabs {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.po-service-tab {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
	width: 100%;
	padding: 22px 20px;
	border: 2px solid var(--po-border);
	border-radius: var(--po-radius);
	background: var(--po-surface);
	box-shadow: var(--po-shadow);
	text-align: left;
	cursor: pointer;
	font: inherit;
	color: var(--po-text);
	transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.po-service-tab:hover {
	border-color: var(--po-accent);
	transform: translateY(-2px);
}

.po-service-tab.is-active {
	border-color: var(--po-primary);
	background: linear-gradient(180deg, #fff 0%, var(--po-accent-soft) 100%);
	box-shadow: 0 12px 28px rgba(26, 35, 126, 0.12);
}

.po-service-tab-icon {
	font-size: 28px;
	line-height: 1;
}

.po-service-tab strong {
	font-size: 17px;
	color: var(--po-primary);
}

.po-service-tab-desc {
	font-size: 14px;
	line-height: 1.5;
	color: var(--po-muted);
}

.po-service-panels .po-service-panel {
	padding-top: 20px;
}

.po-service-panels .po-service-panel[hidden] {
	display: none !important;
}

.po-service-intro,
.po-service-subgroup-desc {
	margin: 0 0 14px;
	color: var(--po-muted);
}

.po-service-groups {
	display: grid;
	gap: 20px;
}

.po-service-subgroup h4 {
	margin: 0 0 8px;
	font-size: 16px;
	color: var(--po-text);
}

.po-sales-desc {
	margin: 0 0 18px;
	color: var(--po-muted);
}

/* Category cards (home) */
.po-grid-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.po-category-grid {
	margin-top: 8px;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
}

@media (min-width: 901px) {
	.po-category-grid {
		grid-template-columns: repeat(6, minmax(0, 1fr));
	}

	.po-category-grid .po-category-card:nth-child(-n+3) {
		grid-column: span 2;
	}

	.po-category-grid .po-category-card:nth-child(n+4) {
		grid-column: span 3;
	}
}

.po-category-card {
	display: block;
	background: var(--po-surface);
	border: 1px solid var(--po-border);
	border-radius: var(--po-radius);
	padding: 24px;
	text-decoration: none;
	color: inherit;
	box-shadow: var(--po-shadow);
	transition: transform 0.2s, border-color 0.2s;
}

.po-category-card:hover {
	transform: translateY(-3px);
	border-color: var(--po-accent);
}

.po-category-icon {
	font-size: 30px;
	display: block;
	margin-bottom: 10px;
}

.po-category-card h3 {
	margin: 0 0 8px;
	color: var(--po-primary);
}

.po-category-card p {
	margin: 0 0 14px;
	color: var(--po-muted);
	font-size: 14px;
}

.po-category-link {
	color: var(--po-accent);
	font-weight: 700;
	font-size: 13px;
}

/* AMC */
.po-amc-plan {
	background: var(--po-surface);
	border: 1px solid var(--po-border);
	border-left: 4px solid var(--po-accent);
	border-radius: var(--po-radius);
	padding: 24px;
}

.po-amc-plan h3 {
	margin: 0 0 12px;
	color: var(--po-primary);
}

.po-amc-plan p {
	margin: 0 0 10px;
	color: var(--po-muted);
}

.po-amc-value {
	font-style: italic;
}

.po-card-highlight {
	border-left: 4px solid var(--po-primary);
}

.po-amc-tip h2 {
	margin-top: 0;
}

/* Google Reviews */
.po-reviews-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 28px;
	flex-wrap: wrap;
}

.po-reviews-summary {
	text-align: right;
}

.po-reviews-score {
	display: block;
	font-size: 2rem;
	color: var(--po-primary);
	line-height: 1;
}

.po-reviews-stars {
	display: block;
	color: #f59e0b;
	font-size: 18px;
	letter-spacing: 1px;
}

.po-reviews-summary small {
	display: block;
	color: var(--po-muted);
	margin-top: 4px;
}

.po-reviews-link {
	display: inline-block;
	margin-top: 8px;
	font-size: 13px;
	font-weight: 700;
}

.po-review-card {
	margin: 0;
	background: var(--po-surface);
	border: 1px solid var(--po-border);
	border-radius: var(--po-radius);
	padding: 22px;
	box-shadow: var(--po-shadow);
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.po-review-card p {
	margin: 0;
	color: var(--po-muted);
	font-style: normal;
	flex: 1;
}

.po-review-card footer {
	margin-top: auto;
}

.po-review-card cite {
	font-style: normal;
	font-weight: 700;
	color: var(--po-primary);
}

.po-review-card small {
	display: block;
	color: var(--po-muted);
	font-size: 12px;
	margin-top: 2px;
}

.po-review-stars {
	color: #f59e0b;
	font-size: 14px;
}

/* Responsive */
@media (max-width: 900px) {
	.po-hero-grid,
	.po-page-hero-grid,
	.po-split,
	.po-grid-3,
	.po-grid-2,
	.po-mega-grid,
	.po-service-tabs {
		grid-template-columns: 1fr;
	}

	.po-cta-inner {
		flex-direction: column;
		align-items: flex-start;
	}

	.po-mega {
		position: static;
		transform: none;
		min-width: 0;
		box-shadow: none;
		border: 0;
		padding: 0 0 8px 12px;
	}
}

@media (max-width: 1180px) {
	.po-nav-toggle {
		display: flex;
	}

	.po-header-inner {
		position: relative;
		flex-wrap: nowrap;
		min-height: 64px;
	}

	.po-brand {
		flex: 1 1 auto;
		min-width: 0;
	}

	.po-header-end {
		display: none;
		position: absolute;
		top: 64px;
		left: 0;
		right: 0;
		flex-direction: column;
		align-items: stretch;
		background: #fff;
		border-bottom: 1px solid var(--po-border);
		box-shadow: var(--po-shadow);
		padding: 16px;
		gap: 0;
		z-index: 110;
	}

	.po-header-end.is-open {
		display: flex;
	}

	.po-nav {
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
	}

	.po-header-actions {
		flex-direction: column;
		align-items: stretch;
		margin-left: 0;
		padding-left: 0;
		border-left: 0;
		padding-top: 12px;
		margin-top: 8px;
		border-top: 1px solid var(--po-border);
	}

	.po-header-whatsapp {
		width: 100%;
		height: auto;
		padding: 10px 14px;
		border-radius: 999px;
		font-size: 13px;
		gap: 8px;
	}

	.po-header-whatsapp-label {
		display: inline;
	}

	.po-nav-cta,
	.po-enquire-btn {
		justify-content: center;
		width: 100%;
		text-align: center;
		padding: 10px 14px;
	}

	.po-nav-link {
		padding: 10px 0;
		font-size: 14px;
		text-align: left;
	}

	.po-nav-has-mega.is-open .po-mega {
		display: block;
	}
}

@media (max-width: 640px) {
	.po-brand-name {
		font-size: 11px;
		letter-spacing: 0.02em;
	}

	.po-brand img {
		height: 38px;
	}
}

/* Enquiry modal */
body.po-modal-open {
	overflow: hidden;
}

.po-modal[hidden] {
	display: none !important;
}

.po-modal {
	position: fixed;
	inset: 0;
	z-index: 10001;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px 16px;
}

.po-modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(15, 23, 42, 0.55);
}

.po-modal-dialog {
	position: relative;
	width: min(480px, 100%);
	background: #fff;
	border-radius: var(--po-radius);
	box-shadow: var(--po-shadow);
	padding: 28px 24px 24px;
}

.po-modal-dialog h2 {
	margin: 0 0 8px;
	font-size: 24px;
}

.po-modal-lead {
	margin: 0 0 20px;
	color: var(--po-muted);
	font-size: 15px;
}

.po-modal-close {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 36px;
	height: 36px;
	border: 0;
	border-radius: 50%;
	background: var(--po-bg);
	color: var(--po-text);
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
}

.po-modal-close:hover {
	background: var(--po-accent-soft);
}

.po-form-field {
	margin-bottom: 16px;
}

.po-form-field label {
	display: block;
	margin-bottom: 6px;
	font-weight: 600;
	font-size: 14px;
}

.po-form-field input,
.po-form-field textarea {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid var(--po-border);
	border-radius: 10px;
	font: inherit;
	color: var(--po-text);
	background: #fff;
}

.po-form-field input:focus,
.po-form-field textarea:focus {
	outline: 2px solid var(--po-accent-soft);
	border-color: var(--po-accent);
}

.po-form-status {
	min-height: 20px;
	margin: 0 0 12px;
	font-size: 14px;
}

.po-form-status.is-success {
	color: #15803d;
}

.po-form-status.is-error {
	color: #b91c1c;
}

.po-enquiry-submit {
	width: 100%;
}

/* Floating track repair */
.po-float-track {
	position: fixed;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 9999;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	width: 52px;
	padding: 14px 8px;
	border-radius: 12px 0 0 12px;
	background: var(--po-accent);
	color: #fff !important;
	text-decoration: none;
	font-weight: 700;
	font-size: 11px;
	line-height: 1.2;
	text-align: center;
	box-shadow: -4px 4px 20px rgba(21, 101, 192, 0.35);
}

.po-float-track svg {
	width: 22px;
	height: 22px;
	fill: currentColor;
}

.po-float-track:hover {
	background: var(--po-primary);
	color: #fff !important;
}

/* Back to top */
.po-back-to-top {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 10000;
	pointer-events: auto;
	width: 48px;
	height: 48px;
	border: 0;
	border-radius: 50%;
	background: var(--po-primary);
	color: #fff;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	box-shadow: 0 8px 24px rgba(26, 35, 126, 0.35);
	opacity: 0;
	visibility: hidden;
	transform: translateY(12px);
	transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s, background 0.2s;
}

.po-back-to-top:not(.is-visible) {
	pointer-events: none;
}

.po-back-to-top.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}

.po-back-to-top:hover {
	background: var(--po-primary-dark);
}

.po-back-to-top:focus-visible {
	outline: 2px solid var(--po-accent);
	outline-offset: 3px;
}

@media (max-width: 768px) {
	.po-back-to-top {
		right: 16px;
		bottom: 16px;
		width: 44px;
		height: 44px;
		font-size: 20px;
	}

	.po-float-track {
		width: 46px;
		padding: 12px 6px;
		font-size: 10px;
	}

	.po-float-track svg {
		width: 20px;
		height: 20px;
	}
}
