/* =========================================================================
   Packgens — section library.
   Every reusable page section lives here; page-specific overrides live in
   home.css, catalog.css, product.css, blog.css and page.css.
   ========================================================================= */

/* -------------------------------------------------------------------------
   Hero
   ------------------------------------------------------------------------- */

.pg-hero {
	position: relative;
	isolation: isolate;
	background: var(--pg-blue);
	color: var(--pg-white);
	padding-top: calc(var(--pg-header-h) + clamp(2rem, 1rem + 4vw, 5rem));
	padding-bottom: clamp(2.5rem, 1.5rem + 4vw, 5.5rem);
	overflow: hidden;
}

.pg-hero__bg {
	position: absolute;
	inset: 0;
	z-index: -2;
}

.pg-hero__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Brand wash from the design: near-transparent at both edges so the artwork
   reads there, and 95% opaque across the middle where the copy sits. */
.pg-hero__bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		270deg,
		rgba(0, 34, 180, 0.1045) 0%,
		rgba(0, 34, 180, 0.95) 27.36%,
		rgba(0, 34, 180, 0.95) 76.58%,
		rgba(0, 34, 180, 0.1045) 100%
	);
}

/* The design's ramp is measured at 1920px. On a narrow screen those soft edges
   would eat most of the readable width, so the opaque band is widened. */
@media (max-width: 991.98px) {
	.pg-hero__bg::after {
		background: linear-gradient(
			270deg,
			rgba(0, 34, 180, 0.35) 0%,
			rgba(0, 34, 180, 0.95) 8%,
			rgba(0, 34, 180, 0.95) 92%,
			rgba(0, 34, 180, 0.35) 100%
		);
	}
}

.pg-hero__inner {
	position: relative;
	display: grid;
	gap: clamp(1.75rem, 1rem + 3vw, 3.5rem);
	align-items: center;
}

.pg-hero__copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--pg-space-md);
	max-width: 46rem;
}

.pg-hero__eyebrow {
	margin: 0;
	font-size: var(--pg-text-base);
	color: rgba(255, 255, 255, 0.85);
}

.pg-hero__title {
	margin: 0;
	color: var(--pg-white);
	font-size: var(--pg-text-display);
	line-height: 1.18;
	letter-spacing: -0.02em;
}

.pg-hero__desc {
	margin: 0;
	max-width: 42rem;
	font-size: var(--pg-text-base);
	line-height: var(--pg-leading-normal);
	color: rgba(255, 255, 255, 0.86);
}

.pg-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--pg-space-sm);
	margin-top: var(--pg-space-xs);
}

.pg-hero .pg-rating-pill {
	margin: 0;
}

/* Layout variants ---------------------------------------------------------- */

.pg-hero--center .pg-hero__inner {
	justify-items: center;
	text-align: center;
}

.pg-hero--center .pg-hero__copy {
	align-items: center;
	text-align: center;
}

.pg-hero--center .pg-hero__title {
	font-size: clamp(2rem, 1.1rem + 4vw, 3.5rem);
}

.pg-hero--compact {
	padding-bottom: clamp(1.5rem, 1rem + 2vw, 2.5rem);
}

.pg-hero--compact .pg-hero__title {
	font-size: var(--pg-text-h1);
}

@media (min-width: 992px) {
	.pg-hero--split .pg-hero__inner,
	.pg-hero--form .pg-hero__inner {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	}

	.pg-hero--form .pg-hero__inner {
		grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
		align-items: center;
	}
}

.pg-hero__media img {
	width: 100%;
	border-radius: var(--pg-radius-2xl);
}

.pg-hero__form .pg-form {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--pg-radius-2xl);
	padding: clamp(1.25rem, 0.9rem + 1.4vw, 2rem);
	backdrop-filter: blur(6px);
}

.pg-hero__form .pg-form__title {
	color: var(--pg-white);
	text-align: center;
	font-size: var(--pg-text-h3);
	margin-bottom: var(--pg-space-md);
}

.pg-hero__form .pg-field__label {
	color: rgba(255, 255, 255, 0.9);
}

/* Trust strip overlapping the bottom of the hero. */
.pg-hero--has-strip {
	padding-bottom: clamp(5rem, 3rem + 6vw, 8.5rem);
	overflow: visible;
}

.pg-hero__strip-wrap {
	position: absolute;
	left: 50%;
	bottom: 0;
	/* Sit the bar exactly across the hero's bottom edge. */
	transform: translate(-50%, 50%);
	z-index: 3;
}

.pg-hero__strip {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
	gap: var(--pg-space-sm);
	margin: 0;
	padding: var(--pg-space-md) var(--pg-space-lg);
	border-radius: var(--pg-radius-md);
	background: var(--pg-gray-150);
	box-shadow: var(--pg-shadow-sm);
	list-style: none;
}

.pg-hero__feature {
	display: flex;
	align-items: center;
	gap: var(--pg-space-sm);
	padding-inline: var(--pg-space-md);
}

.pg-hero__feature + .pg-hero__feature {
	border-left: 1px solid var(--pg-gray-300);
}

.pg-hero__feature .pg-usp__title,
.pg-hero__feature .pg-usp__text {
	color: var(--pg-color-heading);
}

.pg-hero__feature .pg-usp__text {
	color: var(--pg-color-muted);
}

@media (max-width: 991.98px) {
	/* Stacked, the strip is far too tall to straddle the hero edge, so it
	   returns to normal flow below it. */
	.pg-hero--has-strip {
		padding-bottom: clamp(2rem, 1.4rem + 2vw, 3rem);
	}

	.pg-hero__strip-wrap {
		position: static;
		transform: none;
		margin-top: var(--pg-space-lg);
	}

	.pg-hero--has-strip + .pg-section,
	.pg-hero--has-strip + section {
		padding-top: var(--pg-section-y);
	}
}

/* Between the drawer breakpoint and small phones a 2x2 grid balances better
   than auto-fit's 3 + 1. */
@media (min-width: 560px) and (max-width: 991.98px) {
	.pg-hero__strip {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.pg-hero__feature:nth-child(odd) {
		border-left: 0;
	}
}

@media (max-width: 767.98px) {
	.pg-hero__strip {
		padding: var(--pg-space-sm);
	}

	.pg-hero__feature + .pg-hero__feature {
		border-left: 0;
		border-top: 1px solid var(--pg-gray-300);
		padding-top: var(--pg-space-sm);
	}
}

/* The section that follows a strip hero needs room for the overlap. */
.pg-hero--has-strip + .pg-section,
.pg-hero--has-strip + section {
	padding-top: clamp(4rem, 2.5rem + 5vw, 7rem);
}

/* -------------------------------------------------------------------------
   Page header (compact band without a configured hero)
   ------------------------------------------------------------------------- */

.pg-page-header {
	background: var(--pg-blue);
	color: var(--pg-white);
	padding-top: calc(var(--pg-header-h) + clamp(1.5rem, 1rem + 2vw, 3rem));
	padding-bottom: clamp(1.5rem, 1rem + 2vw, 3rem);
}

.pg-page-header__title {
	margin: var(--pg-space-sm) 0 0;
	color: var(--pg-white);
}

.pg-page-header__subtitle {
	margin: var(--pg-space-xs) 0 0;
	max-width: 46rem;
	color: rgba(255, 255, 255, 0.82);
}

.pg-page-header .pg-breadcrumb,
.pg-page-header .pg-breadcrumb a,
.pg-page-header .pg-breadcrumb [aria-current="page"] {
	color: rgba(255, 255, 255, 0.8);
}

.pg-page-header .pg-breadcrumb a:hover {
	color: var(--pg-white);
}

/* -------------------------------------------------------------------------
   Section footer actions
   ------------------------------------------------------------------------- */

.pg-section__footer {
	display: flex;
	justify-content: center;
	margin-top: clamp(1.75rem, 1.2rem + 2vw, 3rem);
}

.pg-section__footer--end {
	justify-content: flex-end;
}

/* -------------------------------------------------------------------------
   Category cards
   ------------------------------------------------------------------------- */

.pg-categories__track {
	grid-auto-columns: minmax(9.5rem, 1fr);
	padding: var(--pg-space-lg);
	border-radius: var(--pg-radius-md);
	background: var(--pg-gray-150);
}

.pg-cat-card__link {
	display: flex;
	flex-direction: column;
	gap: var(--pg-space-sm);
	text-align: center;
	color: var(--pg-color-heading);
}

.pg-cat-card__media {
	display: block;
	aspect-ratio: 3 / 4;
	border-radius: var(--pg-radius-md);
	overflow: hidden;
	background: var(--pg-gray-100);
}

.pg-cat-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 400ms var(--pg-ease);
}

.pg-cat-card__link:hover .pg-cat-card__media img {
	transform: scale(1.05);
}

.pg-cat-card__placeholder,
.pg-card__placeholder,
.pg-gallery__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	min-height: 8rem;
	color: var(--pg-gray-400);
}

.pg-cat-card__placeholder svg,
.pg-card__placeholder svg,
.pg-gallery__placeholder svg {
	width: 2.5rem;
	height: 2.5rem;
}

.pg-cat-card__title {
	font-size: var(--pg-text-base);
	font-weight: var(--pg-weight-medium);
	line-height: 1.35;
}

/* -------------------------------------------------------------------------
   About
   ------------------------------------------------------------------------- */

.pg-about {
	display: grid;
	gap: clamp(1.5rem, 1rem + 2.5vw, 3rem);
	align-items: center;
}

@media (min-width: 992px) {
	.pg-about {
		grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.6fr) minmax(0, 0.7fr);
	}
}

.pg-about__copy {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--pg-space-md);
	text-align: center;
}

.pg-about__title {
	font-size: clamp(1.75rem, 1.1rem + 3vw, 2.75rem);
	margin: 0;
}

.pg-about__lead,
.pg-about__copy .pg-prose {
	margin: 0;
	max-width: 40rem;
	color: var(--pg-color-muted);
}

.pg-about__media img {
	width: 100%;
	border-radius: var(--pg-radius-2xl);
}

@media (max-width: 991.98px) {
	.pg-about__media--left {
		order: 2;
	}

	.pg-about__media--right {
		order: 3;
	}
}

.pg-checklist {
	display: grid;
	gap: var(--pg-space-xs);
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: left;
}

.pg-checklist li {
	display: flex;
	align-items: flex-start;
	gap: var(--pg-space-xs);
	font-size: var(--pg-text-sm);
	line-height: var(--pg-leading-snug);
}

.pg-checklist svg {
	width: 1.125rem;
	height: 1.125rem;
	flex-shrink: 0;
	margin-top: 0.125rem;
	color: var(--pg-green);
}

.pg-checklist--light li {
	color: rgba(255, 255, 255, 0.9);
}

/* -------------------------------------------------------------------------
   Process steps
   ------------------------------------------------------------------------- */

.pg-process {
	display: grid;
	gap: clamp(1.5rem, 1rem + 2.5vw, 3rem);
	align-items: center;
	padding: clamp(1.25rem, 0.9rem + 1.6vw, 2.5rem);
	border-radius: var(--pg-radius-2xl);
	background: var(--pg-white);
}

@media (min-width: 900px) {
	.pg-process {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
	}
}

.pg-process__media img {
	width: 100%;
	border-radius: var(--pg-radius-xl);
}

.pg-process__steps {
	display: grid;
	gap: var(--pg-space-lg);
	list-style: none;
	margin: 0;
	padding: 0;
	counter-reset: pg-step;
}

.pg-process__step {
	display: grid;
	grid-template-columns: auto auto minmax(0, 1fr);
	align-items: start;
	gap: var(--pg-space-md);
	padding-left: var(--pg-space-md);
	border-left: 3px solid var(--pg-gray-200);
}

.pg-process__step.is-active {
	border-left-color: var(--pg-blue);
}

.pg-process__number {
	font-family: var(--pg-font-display);
	font-size: var(--pg-text-h3);
	font-weight: var(--pg-weight-bold);
	color: var(--pg-gray-400);
	line-height: 1;
}

.pg-process__step.is-active .pg-process__number {
	color: var(--pg-blue);
}

.pg-process__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	border-radius: var(--pg-radius-sm);
	overflow: hidden;
	background: var(--pg-gray-100);
}

.pg-process__icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.pg-process__copy {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.pg-process__title {
	font-size: var(--pg-text-h5);
	font-weight: var(--pg-weight-semibold);
	color: var(--pg-color-heading);
}

.pg-process__desc {
	font-size: var(--pg-text-xs);
	line-height: var(--pg-leading-snug);
	color: var(--pg-color-muted);
}

/* -------------------------------------------------------------------------
   Why choose us
   ------------------------------------------------------------------------- */

.pg-why {
	display: grid;
	gap: clamp(1.75rem, 1.2rem + 2.5vw, 3.5rem);
	align-items: start;
}

@media (min-width: 992px) {
	.pg-why {
		grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
	}
}

.pg-why__title {
	margin: var(--pg-space-sm) 0;
}

.pg-why__desc {
	margin: 0 0 var(--pg-space-xl);
	max-width: 40rem;
	color: var(--pg-color-muted);
}

.pg-why__grid {
	display: grid;
	gap: 0;
	list-style: none;
	margin: 0;
	padding: 0;
}

@media (min-width: 640px) {
	.pg-why__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.pg-why__item {
	display: flex;
	align-items: flex-start;
	gap: var(--pg-space-sm);
	padding: var(--pg-space-lg) var(--pg-space-md);
	border-top: 1px solid var(--pg-color-border);
}

@media (min-width: 640px) {
	.pg-why__item:nth-child(odd) {
		border-right: 1px solid var(--pg-color-border);
	}
}

.pg-why__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	flex-shrink: 0;
	color: var(--pg-blue);
}

.pg-why__icon svg {
	width: 1.75rem;
	height: 1.75rem;
}

.pg-why__icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.pg-why__copy {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.pg-why__item-title {
	font-size: var(--pg-text-h5);
	font-weight: var(--pg-weight-semibold);
	color: var(--pg-color-heading);
	line-height: 1.3;
}

.pg-why__item-desc {
	font-size: var(--pg-text-xs);
	line-height: var(--pg-leading-snug);
	color: var(--pg-color-muted);
}

.pg-why__media {
	display: grid;
	gap: var(--pg-space-md);
}

.pg-why__figure {
	margin: 0;
	border-radius: var(--pg-radius-md);
	overflow: hidden;
	background: var(--pg-gray-100);
}

.pg-why__figure img {
	width: 100%;
}

/* -------------------------------------------------------------------------
   Comparison
   ------------------------------------------------------------------------- */

.pg-comparison {
	display: grid;
	gap: var(--pg-space-lg);
	align-items: stretch;
}

@media (min-width: 992px) {
	.pg-comparison {
		grid-template-columns: minmax(0, 2.1fr) minmax(0, 1fr);
	}
}

.pg-comparison__panel {
	padding: clamp(1.25rem, 0.9rem + 1.6vw, 2.5rem);
	border-radius: var(--pg-radius-2xl);
	background: var(--pg-white);
	color: var(--pg-color-text);
}

.pg-comparison__heading {
	margin: var(--pg-space-sm) 0 var(--pg-space-lg);
	font-size: var(--pg-text-h3);
}

.pg-badge--dark {
	background: var(--pg-ink);
	color: var(--pg-white);
}

.pg-comparison__table {
	width: 100%;
	min-width: 34rem;
	border-collapse: separate;
	border-spacing: 0;
}

.pg-comparison__table th,
.pg-comparison__table td {
	padding: var(--pg-space-md);
	text-align: left;
	vertical-align: middle;
	border-bottom: 1px solid var(--pg-color-border);
}

.pg-comparison__table tbody th {
	font-weight: var(--pg-weight-regular);
	font-size: var(--pg-text-sm);
	color: var(--pg-color-text);
}

.pg-comparison__table thead th {
	font-family: var(--pg-font-body);
	font-size: var(--pg-text-sm);
	font-weight: var(--pg-weight-semibold);
	color: var(--pg-color-heading);
	text-align: center;
	border-bottom: 0;
}

.pg-comparison__table td {
	text-align: center;
	width: 8rem;
}

.pg-comparison__col--us {
	background: var(--pg-green-band);
	color: var(--pg-white);
}

.pg-comparison__table thead .pg-comparison__col--us {
	border-radius: var(--pg-radius-md) var(--pg-radius-md) 0 0;
	color: var(--pg-white);
}

.pg-comparison__table tbody tr:last-child .pg-comparison__col--us {
	border-radius: 0 0 var(--pg-radius-md) var(--pg-radius-md);
}

.pg-mark svg {
	width: 1.5rem;
	height: 1.5rem;
}

.pg-mark--yes {
	color: var(--pg-ink);
}

.pg-comparison__col--us .pg-mark--yes {
	color: var(--pg-white);
}

.pg-mark--no {
	color: var(--pg-gray-500);
}

.pg-comparison__promo {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	position: relative;
	min-height: 20rem;
	border-radius: var(--pg-radius-2xl);
	overflow: hidden;
	background: var(--pg-navy-deep);
}

.pg-comparison__promo > img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pg-comparison__promo-copy {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--pg-space-sm);
	padding: var(--pg-space-lg);
	background: linear-gradient(180deg, rgba(0, 34, 180, 0) 0%, rgba(0, 34, 180, 0.92) 60%);
}

.pg-comparison__promo-title {
	margin: 0;
	color: var(--pg-white);
	font-family: var(--pg-font-display);
	font-size: var(--pg-text-h4);
	font-weight: var(--pg-weight-bold);
	line-height: 1.25;
}

.pg-comparison__points {
	display: grid;
	gap: var(--pg-space-md);
	grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
	list-style: none;
	margin: var(--pg-space-xl) 0 0;
	padding: 0;
}

.pg-comparison__points li {
	display: flex;
	align-items: center;
	gap: var(--pg-space-xs);
	justify-content: center;
	font-size: var(--pg-text-sm);
	color: var(--pg-white);
}

.pg-comparison__points svg {
	width: 1.25rem;
	height: 1.25rem;
	color: var(--pg-white);
}

.pg-comparison__points li + li {
	border-left: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 767.98px) {
	.pg-comparison__points li + li {
		border-left: 0;
	}
}

/* -------------------------------------------------------------------------
   Materials
   ------------------------------------------------------------------------- */

.pg-materials__head {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: var(--pg-space-lg);
	margin-bottom: clamp(1.5rem, 1rem + 2vw, 2.5rem);
}

.pg-section--materials .pg-tabs__list {
	background: var(--pg-white);
}

.pg-section--materials .pg-tabs__tab[aria-selected="true"] {
	background: var(--pg-blue);
	color: var(--pg-white);
}

/* -------------------------------------------------------------------------
   Industries
   ------------------------------------------------------------------------- */

.pg-industries__track {
	grid-auto-columns: minmax(15rem, 1fr);
}

.pg-industries__foot,
.pg-reviews__foot {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: var(--pg-space-md);
	margin-top: clamp(1.5rem, 1rem + 2vw, 2.5rem);
}

.pg-industry-card .pg-card__body {
	background: var(--pg-white);
}

/* -------------------------------------------------------------------------
   FAQs
   ------------------------------------------------------------------------- */

.pg-faqs {
	max-width: 62rem;
	margin-inline: auto;
}

.pg-faqs--grouped {
	display: grid;
	gap: clamp(1.5rem, 1rem + 2vw, 2.5rem);
	max-width: none;
}

@media (min-width: 900px) {
	.pg-faqs--grouped {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.pg-faqs__group-title {
	margin-bottom: var(--pg-space-xs);
}

.pg-faqs__group-sub {
	margin: 0 0 var(--pg-space-md);
	color: var(--pg-blue);
	font-weight: var(--pg-weight-medium);
}

.pg-accordion__heading {
	margin: 0;
	font-size: inherit;
	font-family: inherit;
	font-weight: inherit;
	letter-spacing: normal;
}

/* -------------------------------------------------------------------------
   Reviews
   ------------------------------------------------------------------------- */

.pg-reviews__head {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: var(--pg-space-lg);
	margin-bottom: clamp(1.75rem, 1.2rem + 2vw, 3rem);
}

.pg-review-badges {
	display: flex;
	flex-wrap: wrap;
	gap: var(--pg-space-sm);
	list-style: none;
	margin: 0;
	padding: 0;
}

.pg-review-badge {
	display: flex;
	align-items: center;
	gap: var(--pg-space-sm);
	padding: var(--pg-space-sm) var(--pg-space-md);
	border-radius: var(--pg-radius-md);
	background: rgba(255, 255, 255, 0.12);
	color: var(--pg-white);
}

a.pg-review-badge:hover {
	background: rgba(255, 255, 255, 0.2);
	color: var(--pg-white);
}

.pg-review-badge__brand {
	display: flex;
	align-items: center;
	gap: var(--pg-space-2xs);
	font-size: var(--pg-text-xs);
	font-weight: var(--pg-weight-semibold);
}

.pg-review-badge__brand svg {
	width: 1.125rem;
	height: 1.125rem;
	color: var(--pg-green-dark);
}

.pg-review-badge__meta {
	display: flex;
	align-items: center;
	gap: var(--pg-space-xs);
	font-size: var(--pg-text-2xs);
}

.pg-review-badge__score {
	display: inline-flex;
	align-items: center;
	gap: 0.125rem;
	padding: 0.125rem 0.5rem;
	border-radius: var(--pg-radius-pill);
	background: var(--pg-white);
	color: var(--pg-blue);
	font-weight: var(--pg-weight-bold);
}

.pg-review-badge__score svg {
	width: 0.75rem;
	height: 0.75rem;
	color: var(--pg-amber);
}

.pg-review-badge__arrow svg {
	width: 1rem;
	height: 1rem;
}

.pg-reviews__track {
	grid-auto-columns: minmax(19rem, 1fr);
}

.pg-review-card {
	display: flex;
	flex-direction: column;
	gap: var(--pg-space-md);
	height: 100%;
	padding: var(--pg-space-lg);
	border-radius: var(--pg-radius-md);
	background: var(--pg-white);
	color: var(--pg-color-text);
}

.pg-review-card__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--pg-space-xs);
}

.pg-review-card__source {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	font-size: var(--pg-text-2xs);
	color: var(--pg-color-muted);
}

.pg-review-card__source svg {
	width: 1rem;
	height: 1rem;
	color: var(--pg-blue);
}

.pg-review-card__text {
	margin: 0;
	flex: 1 1 auto;
	font-size: var(--pg-text-sm);
	line-height: var(--pg-leading-normal);
	color: var(--pg-color-text);
}

.pg-review-card__foot {
	display: flex;
	align-items: center;
	gap: var(--pg-space-sm);
}

.pg-review-card__avatar img {
	width: 40px;
	height: 40px;
	border-radius: var(--pg-radius-circle);
	object-fit: cover;
}

.pg-review-card__meta {
	display: flex;
	flex-direction: column;
}

.pg-review-card__name {
	font-size: var(--pg-text-xs);
	font-weight: var(--pg-weight-semibold);
	color: var(--pg-color-heading);
}

.pg-review-card__role {
	font-size: var(--pg-text-2xs);
	color: var(--pg-blue);
}

/* -------------------------------------------------------------------------
   Blog cards
   ------------------------------------------------------------------------- */

.pg-post-card {
	display: flex;
	flex-direction: column;
	gap: var(--pg-space-md);
	height: 100%;
}

.pg-post-card__media {
	display: block;
	aspect-ratio: 16 / 11;
	border-radius: var(--pg-radius-md);
	overflow: hidden;
	background: var(--pg-gray-100);
}

.pg-post-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 400ms var(--pg-ease);
}

.pg-post-card:hover .pg-post-card__media img {
	transform: scale(1.04);
}

.pg-post-card__body {
	display: flex;
	flex-direction: column;
	gap: var(--pg-space-xs);
	flex: 1 1 auto;
}

.pg-post-card__terms {
	margin: 0;
	font-size: var(--pg-text-2xs);
	font-weight: var(--pg-weight-semibold);
	color: var(--pg-blue);
}

.pg-post-card__terms a {
	color: inherit;
}

.pg-post-card__title {
	margin: 0;
	font-size: var(--pg-text-h4);
	line-height: 1.3;
}

.pg-post-card__title a {
	color: var(--pg-color-heading);
}

.pg-post-card__title a:hover {
	color: var(--pg-blue);
}

.pg-post-card__excerpt {
	margin: 0;
	font-size: var(--pg-text-xs);
	line-height: var(--pg-leading-normal);
	color: var(--pg-color-muted);
}

.pg-post-card__footer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: var(--pg-space-xs);
	margin-top: auto;
	padding-top: var(--pg-space-sm);
}

.pg-post-card__author {
	display: flex;
	align-items: center;
	gap: var(--pg-space-xs);
}

.pg-post-card__avatar {
	border-radius: var(--pg-radius-circle);
}

.pg-post-card__author-name {
	display: block;
	font-size: var(--pg-text-2xs);
	font-weight: var(--pg-weight-semibold);
	color: var(--pg-color-heading);
}

.pg-post-card__date {
	display: block;
	font-size: var(--pg-text-2xs);
	color: var(--pg-color-muted);
}

/* -------------------------------------------------------------------------
   Brands
   ------------------------------------------------------------------------- */

.pg-brands {
	display: grid;
	gap: var(--pg-space-lg);
	align-items: center;
}

@media (min-width: 992px) {
	.pg-brands {
		grid-template-columns: minmax(0, 1fr) minmax(0, 2.4fr);
	}
}

.pg-brands__title {
	margin: 0 0 var(--pg-space-xs);
	font-size: var(--pg-text-h2);
}

.pg-brands__desc {
	margin: 0;
	font-size: var(--pg-text-xs);
	color: var(--pg-color-muted);
}

.pg-brands__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: clamp(1rem, 0.6rem + 2vw, 2.5rem);
	list-style: none;
	margin: 0;
	padding: 0;
}

.pg-brands__list img {
	max-height: 2.25rem;
	width: auto;
	filter: grayscale(1);
	opacity: 0.65;
	transition: filter var(--pg-duration) var(--pg-ease), opacity var(--pg-duration) var(--pg-ease);
}

.pg-brands__list li:hover img {
	filter: none;
	opacity: 1;
}

/* -------------------------------------------------------------------------
   Stats
   ------------------------------------------------------------------------- */

.pg-stats {
	display: grid;
	gap: clamp(1.5rem, 1rem + 2.5vw, 3rem);
	align-items: center;
}

@media (min-width: 900px) {
	.pg-stats--split {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	}
}

.pg-stats__media img {
	width: 100%;
	border-radius: var(--pg-radius-md);
}

.pg-stats__list {
	display: grid;
	gap: 0;
	list-style: none;
	margin: 0;
	padding: 0;
}

.pg-stats__item {
	display: flex;
	align-items: flex-start;
	gap: var(--pg-space-md);
	padding-block: var(--pg-space-lg);
}

.pg-stats__item + .pg-stats__item {
	border-top: 1px solid var(--pg-color-border);
}

.pg-stats__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	flex-shrink: 0;
	color: var(--pg-blue);
}

.pg-stats__icon svg {
	width: 2rem;
	height: 2rem;
}

.pg-stats__copy {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.pg-stats__value {
	font-family: var(--pg-font-display);
	font-size: var(--pg-text-h2);
	font-weight: var(--pg-weight-extrabold);
	line-height: 1.1;
	color: var(--pg-color-heading);
}

.pg-stats__title {
	font-size: var(--pg-text-h5);
	font-weight: var(--pg-weight-semibold);
	color: var(--pg-color-heading);
}

.pg-stats__desc {
	font-size: var(--pg-text-xs);
	line-height: var(--pg-leading-snug);
	color: var(--pg-color-muted);
}

/* Stats on a brand band (About hero). */
.pg-section--blue .pg-stats__value,
.pg-section--blue .pg-stats__title,
.pg-section--blue .pg-stats__desc,
.pg-section--blue .pg-stats__icon {
	color: var(--pg-white);
}

/* -------------------------------------------------------------------------
   SEO content
   ------------------------------------------------------------------------- */

.pg-longform {
	position: relative;
}

.pg-longform__inner {
	display: grid;
	gap: clamp(1.5rem, 1rem + 2.5vw, 3.5rem);
}

@media (min-width: 900px) {
	.pg-longform__inner--cols-2 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.pg-longform.is-collapsed .pg-longform__inner {
	max-height: 28rem;
	overflow: hidden;
}

.pg-longform__fade {
	display: none;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 3.5rem;
	height: 8rem;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, var(--pg-color-bg) 92%);
	pointer-events: none;
}

.pg-longform.is-collapsed .pg-longform__fade {
	display: block;
}

.pg-longform__toggle {
	display: flex;
	margin: var(--pg-space-lg) auto 0;
}

/* Long-form typography ---------------------------------------------------- */

.pg-prose {
	font-size: var(--pg-text-base);
	line-height: var(--pg-leading-relaxed);
	color: var(--pg-color-text);
}

.pg-prose > * + * {
	margin-top: var(--pg-space-md);
}

.pg-prose h2 {
	margin-top: var(--pg-space-2xl);
	font-size: var(--pg-text-h3);
}

.pg-prose h3 {
	margin-top: var(--pg-space-xl);
	font-size: var(--pg-text-h4);
}

.pg-prose h4 {
	margin-top: var(--pg-space-lg);
	font-size: var(--pg-text-h5);
}

.pg-prose ul,
.pg-prose ol {
	padding-left: 1.25rem;
}

.pg-prose li + li {
	margin-top: var(--pg-space-2xs);
}

.pg-prose a {
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

.pg-prose img,
.pg-prose figure {
	border-radius: var(--pg-radius-md);
}

.pg-prose blockquote {
	margin-inline: 0;
	padding: var(--pg-space-md) var(--pg-space-lg);
	border-left: 4px solid var(--pg-blue);
	background: var(--pg-gray-100);
	border-radius: 0 var(--pg-radius-sm) var(--pg-radius-sm) 0;
	font-size: var(--pg-text-lg);
}

.pg-prose table {
	font-size: var(--pg-text-sm);
}

.pg-prose th,
.pg-prose td {
	padding: var(--pg-space-sm) var(--pg-space-md);
	border-bottom: 1px solid var(--pg-color-border);
	text-align: left;
}

.pg-prose code {
	padding: 0.125rem 0.375rem;
	border-radius: var(--pg-radius-xs);
	background: var(--pg-gray-150);
	font-size: 0.9em;
}

/* -------------------------------------------------------------------------
   CTA band and promo banner
   ------------------------------------------------------------------------- */

.pg-cta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: var(--pg-space-lg);
}

.pg-cta__title {
	margin: 0 0 var(--pg-space-2xs);
	font-size: clamp(1.375rem, 1rem + 1.8vw, 2rem);
	color: var(--pg-white);
}

.pg-cta__desc {
	margin: 0;
	max-width: 44rem;
	color: rgba(255, 255, 255, 0.85);
	font-size: var(--pg-text-sm);
}

.pg-cta__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--pg-space-md);
}

.pg-cta__phone {
	display: inline-flex;
	align-items: center;
	gap: var(--pg-space-xs);
	color: var(--pg-white);
}

.pg-cta__phone svg {
	width: 1.5rem;
	height: 1.5rem;
}

.pg-cta__phone-label {
	display: block;
	font-size: var(--pg-text-2xs);
	color: rgba(255, 255, 255, 0.8);
}

.pg-cta__phone-number {
	display: block;
	font-family: var(--pg-font-display);
	font-size: var(--pg-text-h5);
	font-weight: var(--pg-weight-bold);
}

.pg-promo {
	display: grid;
	gap: 0;
	border-radius: var(--pg-radius-2xl);
	overflow: hidden;
	background: var(--pg-blue);
	color: var(--pg-white);
}

@media (min-width: 768px) {
	.pg-promo {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
	}
}

.pg-promo__copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: var(--pg-space-sm);
	padding: clamp(1.5rem, 1rem + 2.5vw, 3rem);
}

.pg-promo__eyebrow {
	margin: 0;
	font-size: var(--pg-text-sm);
	font-weight: var(--pg-weight-semibold);
	color: rgba(255, 255, 255, 0.9);
}

.pg-promo__title {
	margin: 0;
	color: var(--pg-white);
	font-size: clamp(1.625rem, 1.1rem + 2.4vw, 2.5rem);
}

.pg-promo__desc {
	margin: 0;
	color: rgba(255, 255, 255, 0.85);
	font-size: var(--pg-text-sm);
}

.pg-promo__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--pg-space-md);
	margin-top: var(--pg-space-sm);
}

.pg-promo__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* -------------------------------------------------------------------------
   Quote card
   ------------------------------------------------------------------------- */

.pg-quote-card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--pg-space-md);
	padding: var(--pg-space-lg);
	border-radius: var(--pg-radius-md);
	background: var(--pg-blue);
	color: var(--pg-white);
}

.pg-quote-card__title {
	margin: 0;
	color: var(--pg-white);
	font-size: var(--pg-text-h4);
}

.pg-quote-card__text {
	margin: 0;
	font-size: var(--pg-text-xs);
	color: rgba(255, 255, 255, 0.85);
	line-height: var(--pg-leading-normal);
}

.pg-quote-card__phone {
	display: inline-flex;
	align-items: center;
	gap: var(--pg-space-xs);
	color: var(--pg-white);
}

.pg-quote-card__phone svg {
	width: 1.25rem;
	height: 1.25rem;
}

.pg-quote-card__phone-label {
	display: block;
	font-size: var(--pg-text-2xs);
	color: rgba(255, 255, 255, 0.8);
}

.pg-quote-card__phone-number {
	display: block;
	font-weight: var(--pg-weight-bold);
}

/* -------------------------------------------------------------------------
   Load more
   ------------------------------------------------------------------------- */

.pg-load-more {
	display: flex;
	justify-content: center;
	margin-top: clamp(1.75rem, 1.2rem + 2vw, 3rem);
}
