:root {
  /* Typography parity scale (matched to Next.js classes). */
  --pps-type-h1: 3rem; /* text-5xl */
  --pps-type-h1-md: 3.75rem; /* sm:text-6xl */
  --pps-type-h1-lg: 4.5rem; /* lg:text-7xl */
  --pps-type-h2: 2.25rem; /* text-4xl */
  --pps-type-h2-md: 3rem; /* sm:text-5xl */
  --pps-type-h3: 2rem; /* text-2xl / card titles */
  --pps-type-h4: 1.5rem;
  --pps-type-body-lg: 1.125rem; /* text-lg */
  --pps-type-body: 1rem; /* text-base */
  --pps-type-body-sm: 0.875rem; /* text-sm */
  --pps-line-body-lg: 1.625;
  --pps-line-body: 1.65;
  --pps-line-body-sm: 1.55;

  --pps-bg: #0a0a0f;
  --pps-bg-dark: #0c162b;
  --pps-bg-panel: #0f1522;
  --pps-bg-light: #eef3fb;
  --pps-surface: #f8fbff;
  --pps-card: #ffffff;
  --pps-text: #e6e7eb;
  --pps-text-dark: #0b1324;
  --pps-muted: #41547a;
  --pps-border: #d6dff0;
  --pps-accent: #0066ff;
  --pps-type-eyebrow: 0.75rem;
  --pps-type-eyebrow-hero: 0.875rem;
  --pps-type-heading: var(--pps-type-h2);
  --pps-type-heading-md: var(--pps-type-h2-md);
  --pps-type-hero: var(--pps-type-h1);
  --pps-type-hero-md: var(--pps-type-h1-md);
  --pps-type-hero-lg: var(--pps-type-h1-lg);
  --pps-type-card-title: var(--pps-type-h3);
  --pps-type-card-title-md: 1.8rem;
  --pps-type-card-title-sm: 1.6875rem;
  --pps-type-card-title-compact: 1.5rem;
  --pps-line-card-title: 1.2;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: clip;
  overflow-y: visible;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body.pps-site {
  background: var(--pps-bg);
  color: var(--pps-text);
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
  line-height: 1.5;
  overflow-x: clip;
}

body.pps-site h1,
body.pps-site h2,
body.pps-site h3,
body.pps-site h4,
body.pps-site h5,
body.pps-site h6 {
  font-family: inherit;
  font-weight: 600;
  letter-spacing: -0.015em;
}

/* Definitive semantic defaults for page content typography. */
.pps-main h1 {
  font-size: var(--pps-type-h1);
  line-height: 1.02;
}

.pps-main h2 {
  font-size: var(--pps-type-h2);
  line-height: 1.14;
}

.pps-main h3 {
  font-size: var(--pps-type-h3);
  line-height: 1.2;
}

.pps-main h4 {
  font-size: var(--pps-type-h4);
  line-height: 1.3;
}

:where(.pps-main) :where(p) {
  font-size: var(--pps-type-body);
  line-height: var(--pps-line-body);
  font-weight: 400;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.pps-container {
  width: min(100% - 48px, 1352px);
  margin-inline: auto;
}

.pps-main {
  min-height: 60vh;
  overflow-x: clip;
}

.pps-header {
  position: sticky;
  top: 0;
  inset-inline: 0;
  z-index: 70;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #090b12;
  overflow: visible;
}

.pps-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 24px;
  overflow: visible;
}

.pps-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.pps-brand img {
  width: auto;
  height: 64px;
  margin-bottom: -12px;
}

.pps-brand span {
  color: #fff;
  letter-spacing: 0.08em;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  transform: translateY(-2px);
}

.pps-nav-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: #d4d7df;
  border-radius: 10px;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.pps-nav-toggle svg {
  width: 24px;
  height: 24px;
  stroke: currentcolor;
}

.pps-nav-toggle:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.pps-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 auto;
  min-width: 0;
  gap: 32px;
}

.pps-header-nav-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 auto;
  min-width: 0;
  gap: 28px;
}

.pps-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 32px;
}

.pps-mobile-nav {
  display: none;
}

.pps-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.pps-header-actions .pps-btn {
  white-space: nowrap;
}

.pps-nav-item {
  position: relative;
  color: #d4d7df;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.025em;
}

.pps-nav-item > a,
.pps-nav-trigger {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.pps-nav-trigger svg {
  width: 16px;
  height: 16px;
  stroke: currentcolor;
  transition: transform 0.2s ease;
}

.pps-has-mega.pps-open .pps-nav-trigger svg {
  transform: rotate(180deg);
}

.pps-nav-item:hover,
.pps-nav-item:focus-within {
  color: #fff;
}

@media (min-width: 640px) {
  .pps-brand img {
    height: 80px;
    margin-bottom: -14px;
  }
}

@media (min-width: 1024px) {
  .pps-brand img {
    height: 96px;
    margin-bottom: -16px;
  }
}

.pps-mega {
  display: none;
  position: fixed;
  left: 50%;
  top: 80px;
  margin-top: 12px;
  transform: translateX(-50%);
  width: min(calc(100vw - 48px), 1352px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0d111b;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  z-index: 60;
  animation: overlay-fade-in 220ms ease-out;
}

.pps-has-mega:hover .pps-mega,
.pps-has-mega:focus-within .pps-mega,
.pps-has-mega.pps-open .pps-mega {
  display: block;
}

.pps-mega-grid {
  display: grid;
  gap: 14px;
}

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

.pps-mega-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pps-mega-header {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pps-mega-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  color: #9ca4b6;
}

.pps-mega-viewall {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #0066ff;
  transition: color 0.2s ease;
}

.pps-mega-viewall:hover {
  color: #fff;
}

.pps-mega-card {
  position: relative;
  min-height: 160px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: #121b2a;
  padding: 0;
  display: flex;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.pps-mega-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 102, 255, 0.7);
  box-shadow: 0 12px 30px rgba(0, 102, 255, 0.2);
}

.pps-mega-card-media,
.pps-mega-card-overlay,
.pps-mega-card-primary,
.pps-mega-card-secondary {
  position: absolute;
  inset: 0;
}

.pps-mega-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.pps-mega-card:hover .pps-mega-card-media img {
  transform: scale(1.05);
}

.pps-mega-card-overlay {
  background: rgba(2, 6, 17, 0.72);
}

.pps-mega-card-primary,
.pps-mega-card-secondary {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px;
  text-align: center;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.pps-mega-card-primary {
  z-index: 2;
}

.pps-mega-card-secondary {
  z-index: 2;
  opacity: 0;
}

.pps-mega-card:hover .pps-mega-card-primary,
.pps-mega-card:focus-visible .pps-mega-card-primary {
  transform: translateY(-8px);
  opacity: 0;
}

.pps-mega-card:hover .pps-mega-card-secondary,
.pps-mega-card:focus-visible .pps-mega-card-secondary {
  opacity: 1;
}

.pps-mega-card-icon {
  width: 30px;
  height: 30px;
  color: #fff;
  display: inline-flex;
}

.pps-mega-card-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentcolor;
}

.pps-mega-card strong {
  color: #f4f5f8;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 600;
}

.pps-mega-card-secondary > span:first-child {
  color: #b8c0cf;
  font-size: 14px;
  line-height: 1.55;
  max-width: 18rem;
}

.pps-mega-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 12px;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: 0.2s ease;
}

.pps-mega-card:hover .pps-mega-chip {
  border-color: #0066ff;
  background: #0066ff;
}

.pps-mega-card.pps-disabled {
  opacity: 0.82;
  cursor: default;
}

.pps-mega-card.pps-disabled:hover {
  transform: none;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.pps-mega-card.pps-disabled .pps-mega-card-primary {
  opacity: 1;
  transform: none;
}

.pps-mega-card.pps-disabled .pps-mega-card-secondary {
  opacity: 1;
  justify-content: flex-end;
  gap: 8px;
  padding-bottom: 18px;
}

.pps-mega-chip.pps-mega-chip-disabled {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
  color: #e5e7ef;
}

.pps-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  border: 1px solid transparent;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.pps-btn--icon {
  gap: 10px;
}

.pps-btn-icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.pps-btn-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentcolor;
}

.pps-btn--icon .pps-btn-icon {
  transition: transform 0.2s ease;
}

.pps-btn--icon:not(.pps-btn--icon-left):hover .pps-btn-icon {
  transform: translateX(2px);
}

.pps-btn--icon-left:hover .pps-btn-icon {
  transform: translateX(-2px);
}

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

.pps-btn-primary:hover {
  background: #0052cc;
}

.pps-btn-secondary {
  background: transparent;
  color: #e4e4e7;
  border-color: rgba(255, 255, 255, 0.25);
}

.pps-btn-secondary:hover {
  border-color: #0066ff;
  color: #fff;
}

.pps-btn-tertiary {
  background: transparent;
  color: #435271;
  border-color: #8d98ae;
}

.pps-btn-tertiary:hover {
  border-color: var(--pps-accent);
  color: var(--pps-accent);
}

.pps-btn-ghost {
  background: transparent;
  color: var(--pps-muted);
  border-color: #8d98ae;
}

.pps-btn-ghost:hover {
  border-color: var(--pps-accent);
  color: var(--pps-accent);
}

.pps-hero {
  position: relative;
  overflow: hidden;
  min-height: 32rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(circle at 80% 0%, #1e335e 0%, #0c162b 42%, #090b12 100%);
}

.pps-hero-media,
.pps-hero-overlay,
.pps-hero-glow {
  position: absolute;
  inset: 0;
}

.pps-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.pps-hero-overlay {
  background: rgba(5, 7, 13, 0.8);
}

.pps-hero-glow {
  right: -14rem;
  left: auto;
  top: -6rem;
  width: 28rem;
  height: 28rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  opacity: 0.6;
}

.pps-hero-inner {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 8.5rem;
  padding-bottom: 5rem;
}

.pps-hero-copy {
  max-width: 56rem;
  border-left: 4px solid var(--pps-accent);
  padding-left: 24px;
}

.pps-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: var(--pps-type-eyebrow);
  line-height: 1.35;
  color: #5f759e;
  margin: 0;
  font-weight: 500;
}

.pps-hero .pps-eyebrow {
  margin: 0 0 1.5rem;
  color: #a4afc4;
  letter-spacing: 0.22em;
  font-size: var(--pps-type-eyebrow-hero);
}

.pps-hero h1 {
  margin: 0;
  font-size: var(--pps-type-hero);
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: #fff;
  max-width: 17ch;
}

.pps-hero p {
  margin: 2rem 0 0;
  font-size: var(--pps-type-body-lg);
  line-height: var(--pps-line-body-lg);
  color: #c2c8d6;
  max-width: 54ch;
  font-weight: 400;
}

.pps-hero-actions {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.pps-section {
  padding-block: 5rem;
}

.pps-section-light {
  background: var(--pps-bg-light);
  color: var(--pps-text-dark);
}

.pps-section-dark {
  background: #0a0a0f;
  color: #fff;
}

.pps-section-muted {
  background: #f7f9fd;
}

.pps-section h2 {
  margin: 0;
  font-size: var(--pps-type-heading);
  line-height: 1.14;
  letter-spacing: -0.015em;
  color: inherit;
}

.pps-section h2 + .pps-section-intro,
.pps-section h2 + p {
  margin-top: 28px;
}

.pps-section-intro {
  margin: 16px 0 0;
  max-width: 65ch;
  color: var(--pps-muted);
  font-size: var(--pps-type-body-lg);
  line-height: var(--pps-line-body-lg);
  font-weight: 400;
}

.pps-card-grid {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

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

.pps-card {
  border: 1px solid var(--pps-border);
  border-radius: 14px;
  background: #fff;
  min-height: 180px;
}

.pps-image-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pps-image-card-media {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #dce6f5;
}

.pps-image-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.pps-image-card:hover .pps-image-card-media img {
  transform: scale(1.04);
}

.pps-image-card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.pps-image-card h3,
.pps-support-card h3 {
  margin: 0;
  font-size: var(--pps-type-card-title);
  line-height: var(--pps-line-card-title);
  letter-spacing: -0.01em;
  color: var(--pps-text-dark);
}

.pps-image-card p,
.pps-support-card p,
.pps-panel p,
.pps-prose p {
  margin: 0;
  color: var(--pps-muted);
  font-size: var(--pps-type-body);
  line-height: var(--pps-line-body);
  font-weight: 400;
}

.pps-image-card .pps-btn,
.pps-support-card .pps-btn {
  margin-top: auto;
  width: fit-content;
}

.pps-image-card-tall .pps-image-card-content {
  min-height: 25rem;
}

.pps-inline-bullets,
.pps-bullets,
.pps-feature-grid {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pps-inline-bullets li,
.pps-bullets li {
  position: relative;
  padding-left: 18px;
  color: var(--pps-muted);
}

.pps-inline-bullets li::before,
.pps-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.64em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--pps-accent);
}

.pps-inline-bullets {
  display: grid;
  gap: 8px;
  font-size: 15px;
}

.pps-bullets {
  display: grid;
  gap: 10px;
}

.pps-mini-heading {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  color: #4f6287;
  font-weight: 600;
}

.pps-feature-grid {
  margin-top: 16px;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pps-feature-grid li {
  border: 1px solid var(--pps-border);
  border-radius: 12px;
  background: var(--pps-surface);
  padding: 16px;
  color: var(--pps-muted);
}

.pps-slab {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--pps-bg-panel);
  border-radius: 26px;
  padding: 28px;
}

.pps-slab h2 {
  color: #fff;
}

.pps-slab-intro {
  margin-top: 16px;
  font-size: 18px;
  color: #c4cade;
}

.pps-sector-tile-grid {
  margin-top: 24px;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pps-sector-tile {
  position: relative;
  display: block;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  height: 180px;
}

.pps-sector-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pps-sector-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(12, 22, 43, 0.55);
  transition: background 0.2s ease;
}

.pps-sector-tile span {
  position: absolute;
  inset: auto 12px 12px;
  z-index: 2;
  color: #fff;
  font-size: 29px;
  line-height: 1.08;
  font-weight: 600;
}

.pps-sector-tile:hover::before {
  background: rgba(12, 22, 43, 0.35);
}

.pps-slab-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.pps-prose {
  color: var(--pps-muted);
  max-width: 78ch;
}

.pps-prose h2,
.pps-prose h3 {
  margin: 0;
  color: var(--pps-text-dark);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.pps-prose h2 + p,
.pps-prose h3 + p {
  margin-top: 28px;
}

.pps-prose p + p {
  margin-top: 16px;
}

.pps-prose a {
  color: var(--pps-accent);
}

.pps-two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.pps-panel {
  border: 1px solid var(--pps-border);
  border-radius: 12px;
  background: #fff;
  padding: 22px;
  color: var(--pps-muted);
}

.pps-panel h2,
.pps-panel h3 {
  margin: 0 0 10px;
  color: var(--pps-text-dark);
  font-weight: 600;
}

.pps-panel ul {
  margin-top: 10px;
}

.pps-sector-content {
  max-width: none;
}

.pps-sector-content > * + * {
  margin-top: 16px;
}

.pps-coverage-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.pps-coverage-list li {
  border: 1px solid #d4def1;
  border-radius: 8px;
  padding: 12px;
  background: #fff;
  display: grid;
  gap: 4px;
}

.pps-coverage-list strong {
  color: var(--pps-text-dark);
  font-size: 14px;
}

.pps-coverage-list span {
  color: var(--pps-muted);
  font-size: 14px;
}

.pps-support-panels .pps-panel {
  height: 100%;
}

.pps-equal-cards .pps-card {
  height: 100%;
}

.pps-support-card {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pps-cta-block {
  border: 1px solid var(--pps-border);
  border-radius: 16px;
  background: #fff;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.pps-cta-block p {
  color: var(--pps-muted);
  margin: 8px 0 0;
}

.pps-cta-block-dark {
  background: #0c162b;
  border-color: rgba(255, 255, 255, 0.14);
}

.pps-cta-block-dark h2,
.pps-cta-block-dark p {
  color: #fff;
}

.pps-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pps-faq-list {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.pps-faq-item {
  border: 1px solid var(--pps-border);
  border-radius: 12px;
  background: #fff;
  padding: 18px;
}

.pps-faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--pps-text-dark);
  font-size: 20px;
  font-weight: 600;
}

.pps-faq-item summary::-webkit-details-marker {
  display: none;
}

.pps-faq-plus {
  color: var(--pps-accent);
  font-size: 32px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.pps-faq-item[open] .pps-faq-plus {
  transform: rotate(45deg);
}

.pps-faq-item p {
  margin: 12px 0 0;
  color: var(--pps-muted);
}

.pps-manuals {
  margin-top: 28px;
}

.pps-manuals-filters {
  border: 1px solid var(--pps-border);
  border-radius: 24px;
  background: var(--pps-surface);
  padding: 20px;
}

.pps-manuals-header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.pps-manuals-count {
  margin: 0;
  color: #4f6287;
  font-size: 20px;
  font-weight: 600;
}

.pps-manuals-search-label {
  display: block;
  margin-top: 10px;
}

.pps-manuals-search-label input,
.pps-type-row select {
  width: 100%;
  height: 56px;
  border: 1px solid #c9d5ea;
  border-radius: 10px;
  background: #fff;
  padding: 0 16px;
  font-family: inherit;
  font-size: 18px;
  color: var(--pps-text-dark);
  outline: none;
}

.pps-manuals-search-label input:focus,
.pps-type-row select:focus {
  border-color: var(--pps-accent);
}

.pps-manuals-filter-grid {
  margin-top: 18px;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
}

.pps-chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.pps-chip {
  height: 50px;
  border-radius: 10px;
  border: 1px solid #ccd8ed;
  background: #fff;
  color: var(--pps-muted);
  padding: 0 16px;
  font: inherit;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
}

.pps-chip:hover {
  border-color: var(--pps-accent);
  color: var(--pps-text-dark);
}

.pps-chip.active {
  border-color: var(--pps-accent);
  background: var(--pps-accent);
  color: #fff;
}

.pps-type-row {
  margin-top: 10px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.pps-type-row .pps-btn-ghost {
  height: 56px;
}

.pps-manuals-empty {
  margin-top: 16px;
  border: 1px solid var(--pps-border);
  border-radius: 12px;
  background: #fff;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pps-manuals-results {
  margin-top: 24px;
  display: grid;
  gap: 20px;
}

.pps-manuals-group h3 {
  margin: 0;
  font-size: 38px;
  line-height: 1.05;
  color: var(--pps-text-dark);
}

.pps-manuals-category {
  margin-top: 12px;
}

.pps-manuals-category > p {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 600;
  color: #4f6287;
}

.pps-manuals-cards {
  margin-top: 10px;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pps-manual-card {
  border: 1px solid var(--pps-border);
  border-radius: 12px;
  background: #fff;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pps-manual-card h4 {
  margin: 0;
  color: var(--pps-text-dark);
  font-size: 20px;
  line-height: 1.2;
}

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

.pps-manual-card a {
  margin-top: auto;
  color: var(--pps-accent);
  font-weight: 600;
}

.pps-home-hero {
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
  min-height: 36rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #0a0a0f;
}

.pps-home-hero-media,
.pps-home-hero-overlay,
.pps-home-hero-fade,
.pps-home-hero-ring {
  position: absolute;
}

.pps-home-hero-media,
.pps-home-hero-overlay,
.pps-home-hero-fade {
  inset: 0;
}

.pps-home-hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.pps-home-hero-overlay {
  z-index: 10;
  background: rgba(5, 7, 13, 0.78);
}

.pps-home-hero-fade {
  z-index: 10;
  inset: auto 0 0;
  height: 11rem;
  background: linear-gradient(to top, #0a0a0f 0%, rgba(10, 10, 15, 0) 100%);
  pointer-events: none;
}

.pps-home-hero-ring {
  pointer-events: none;
  z-index: 20;
  border-radius: 999px;
}

.pps-home-hero-ring-right {
  top: -7rem;
  right: -14rem;
  width: 34rem;
  height: 34rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.6;
}

.pps-home-hero-ring-left {
  bottom: -18rem;
  left: -10rem;
  width: 30rem;
  height: 30rem;
  border: 1px solid rgba(0, 102, 255, 0.25);
}

.pps-home-hero-inner {
  position: relative;
  z-index: 30;
  display: flex;
  flex-direction: column;
  padding-top: 8.5rem;
  padding-bottom: 5rem;
}

.pps-home-hero-copy {
  max-width: 56rem;
  border-left: 4px solid var(--pps-accent);
  padding-left: 1.5rem;
}

.pps-home-hero-copy .pps-eyebrow {
  margin: 0 0 1.5rem;
  color: #a4afc4;
  font-size: var(--pps-type-eyebrow-hero);
  letter-spacing: 0.22em;
}

.pps-home-hero-copy h1 {
  margin: 0;
  color: #fff;
  font-size: var(--pps-type-hero);
  line-height: 1.02;
  letter-spacing: -0.015em;
  max-width: 17ch;
}

.pps-home-hero-copy p {
  margin: 2rem 0 0;
  color: #c2c8d6;
  font-size: var(--pps-type-body-lg);
  line-height: var(--pps-line-body-lg);
  max-width: 54ch;
}

.pps-home-hero-actions {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.pps-trustbar {
  position: relative;
  z-index: 30;
  margin-top: 3.5rem;
  margin-bottom: -6rem;
}

.pps-trustbar-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: #1b2236;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
  padding: 24px 20px;
  backdrop-filter: blur(8px);
}

.pps-trustbar-card .pps-eyebrow {
  color: #a5b3cb;
  margin-bottom: 14px;
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
}

.pps-trustbar-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pps-trustbar-item {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #121c2e;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 5.5rem;
  padding: 12px;
}

.pps-trustbar-item img {
  max-height: 44px;
  width: auto;
  object-fit: contain;
  opacity: 0.95;
}

.pps-home-about {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #d9e1f1;
  background: #eef3fb;
  color: #0c1220;
  padding-block: 0;
}

.pps-home-about-ring {
  position: absolute;
  top: -4rem;
  right: -12rem;
  width: 16rem;
  height: 16rem;
  border-radius: 999px;
  border: 1px solid #d3dced;
  pointer-events: none;
}

.pps-home-about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px;
  align-items: center;
  padding-top: 12rem;
  padding-bottom: 5rem;
}

.pps-home-about-media-wrap {
  position: relative;
  border: 1px solid #d6dff0;
  background: #f8fbff;
  border-radius: 24px;
  padding: 16px;
}

.pps-home-about-media-frame {
  position: absolute;
  inset: 28px;
  border: 1px solid #dce4f2;
  border-radius: 14px;
  opacity: 0.75;
  pointer-events: none;
}

.pps-home-about-media-wrap img {
  width: 100%;
  height: 18rem;
  object-fit: cover;
  border-radius: 18px;
}

.pps-home-about-copy h2 {
  margin: 0;
  color: #0b1324;
  font-size: 2.25rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.pps-home-about-copy p {
  margin: 0;
  margin-top: 1.75rem;
  color: #41547a;
  font-size: 1.125rem;
  line-height: 1.625;
}

.pps-home-about-copy a {
  margin-top: 1.8rem;
  display: inline-flex;
  font-weight: 600;
  color: #0066ff;
  transition: color 0.2s ease;
}

.pps-home-about-copy a:hover {
  color: #0052cc;
}

.pps-home-services {
  border-bottom: 1px solid rgba(15, 31, 63, 0.14);
  background: #f4f7fb;
  color: #0c1220;
  padding-top: 0;
  padding-bottom: 5rem;
}

.pps-home-services .pps-container {
  padding-top: 5rem;
}

.pps-home-services .pps-eyebrow,
.pps-home-testimonials .pps-eyebrow,
.pps-home-why .pps-eyebrow {
  color: #4f6287;
}

.pps-home-services h2,
.pps-home-testimonials h2 {
  margin-top: 0.75rem;
  color: #0b1324;
  letter-spacing: -0.01em;
  font-size: 2.25rem;
  line-height: 1.2;
}

.pps-home-services .pps-section-intro {
  margin-top: 1.25rem;
  color: #3f4e6e;
  font-size: 1.125rem;
  max-width: 48rem;
}

.pps-home-services-cta {
  margin-top: 1.75rem;
}

.pps-home-slider-nav {
  margin-top: 2.8rem;
  display: flex;
  align-items: center;
  gap: 24px;
}

.pps-home-slider-bar {
  height: 6px;
  flex: 1;
  border-radius: 999px;
  background: #d7deeb;
  overflow: hidden;
}

.pps-home-slider-bar span {
  display: block;
  height: 100%;
  width: 100%;
  border-radius: inherit;
  background: var(--pps-accent);
  transition: width 0.35s ease;
}

.pps-home-slider-arrows {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pps-home-slider-arrows button {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(15, 31, 63, 0.45);
  background: transparent;
  color: #0f1f3f;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: 0.2s ease;
}

.pps-home-slider-arrows button:hover {
  background: #e5edff;
}

.pps-home-slider-arrows button[disabled] {
  border-color: #c3ccdc;
  color: #c3ccdc;
  background: transparent;
  cursor: not-allowed;
}

.pps-home-slider-viewport,
.pps-home-testimonials-viewport {
  margin-top: 2rem;
  overflow: visible;
}

.pps-home-slider-viewport {
  padding-left: max(24px, calc((100vw - 78rem) / 2 + 24px));
  padding-right: 0;
  padding-bottom: 5rem;
  overflow-x: clip;
}

.pps-home-testimonials-viewport {
  overflow: hidden;
}

.pps-home-slider-track,
.pps-home-testimonials-track {
  display: flex;
  transition: transform 0.5s ease-out;
  will-change: transform;
}

.pps-home-service-slide {
  position: relative;
  flex: 0 0 33.333%;
  min-width: 0;
  padding: 0 12px 24px;
}

.pps-home-service-image {
  overflow: hidden;
  border: 1px solid #d8e0f0;
  border-radius: 8px;
  background: #dde5f4;
}

.pps-home-service-image img {
  width: 100%;
  height: 18rem;
  object-fit: cover;
}

.pps-home-service-card {
  position: relative;
  z-index: 2;
  margin: -5rem 24px 0;
  min-height: 28rem;
  display: flex;
  flex-direction: column;
  border: 1px solid #d9e1f2;
  border-radius: 14px;
  background: #f7f9fd;
  box-shadow: 0 14px 35px rgba(15, 25, 45, 0.13);
  padding: 24px;
  transition: 0.25s ease;
}

.pps-home-service-slide:hover .pps-home-service-card {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(0, 102, 255, 0.18);
}

.pps-home-service-card h3 {
  margin: 0;
  color: #0b1324;
  font-size: var(--pps-type-card-title);
  line-height: var(--pps-line-card-title);
  letter-spacing: -0.01em;
}

.pps-home-service-card p {
  margin: 0.75rem 0 0;
  color: #4c5f84;
  font-size: 1.125rem;
  line-height: 1.625;
}

.pps-home-service-card .pps-btn {
  margin-top: auto;
}

.pps-home-who {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #0a0a0f;
  padding-top: 0;
  padding-bottom: 0;
}

.pps-home-who .pps-container {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.pps-home-who-slab {
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #0f1522;
  padding: 2rem;
}

.pps-home-who-slab h2 {
  margin: 0;
  color: #fff;
  font-size: 2.25rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.pps-home-who-slab > p {
  margin: 1.5rem 0 0;
  max-width: 44rem;
  color: #eef3fb;
  font-size: 1.125rem;
  line-height: 1.625;
}

.pps-home-sector-grid {
  margin-top: 1.75rem;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pps-home-sector-tile {
  position: relative;
  display: block;
  height: 8rem;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.25s ease;
}

.pps-home-sector-tile img,
.pps-home-sector-overlay {
  position: absolute;
  inset: 0;
}

.pps-home-sector-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pps-home-sector-overlay {
  background: rgba(2, 6, 17, 0.55);
}

.pps-home-sector-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px;
  text-align: center;
}

.pps-home-sector-icon {
  display: inline-flex;
  width: 32px;
  height: 32px;
  color: #fff;
}

.pps-home-sector-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentcolor;
}

.pps-home-sector-title {
  color: #f4f6fb;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.35;
  transition: 0.3s ease;
}

.pps-home-sector-description {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 86%;
  transform: translate(-50%, -20%);
  color: #f4f6fb;
  font-size: 0.95rem;
  line-height: 1.45;
  opacity: 0;
  transition: 0.3s ease;
}

.pps-home-sector-tile:hover,
.pps-home-sector-tile:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(0, 102, 255, 0.7);
  box-shadow: 0 12px 30px rgba(0, 102, 255, 0.2);
}

.pps-home-sector-tile:hover .pps-home-sector-title,
.pps-home-sector-tile:focus-visible .pps-home-sector-title {
  transform: translateY(6px);
  opacity: 0;
}

.pps-home-sector-tile:hover .pps-home-sector-description,
.pps-home-sector-tile:focus-visible .pps-home-sector-description {
  transform: translate(-50%, 14%);
  opacity: 1;
}

.pps-home-who-actions {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.pps-home-client-marquee {
  position: relative;
  margin-top: 0;
  margin-bottom: 0.75rem;
  width: 100%;
  overflow: hidden;
  padding: 0 0 0.5rem;
}

.pps-home-client-track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  min-width: max-content;
  padding: 0 24px;
  animation: logo-marquee 84s linear infinite;
  will-change: transform;
}

@keyframes logo-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes overlay-fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.pps-home-client-logo {
  width: 240px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pps-home-client-logo img {
  width: auto;
  height: auto;
  max-height: 54px;
  opacity: 0.5;
  object-fit: contain;
}

.pps-home-client-logo img[src*="kingspan.png"],
.pps-home-client-logo img[src*="university-of-essex.png"] {
  max-height: 66px;
}

.pps-home-testimonials {
  border-bottom: 1px solid #d9e1f1;
  background: #f4f8fe;
  color: #0c1220;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.pps-home-testimonial {
  flex: 0 0 50%;
  min-width: 0;
  padding: 0 12px 12px;
}

.pps-home-testimonial-card {
  min-height: 24rem;
  display: flex;
  flex-direction: column;
  border: 1px solid #d9e1f2;
  border-radius: 16px;
  background: #f8fbff;
  padding: 28px;
  transition: 0.25s ease;
}

.pps-home-testimonial:hover .pps-home-testimonial-card {
  transform: translateY(-3px);
  border-color: rgba(0, 102, 255, 0.6);
}

.pps-home-testimonial-card > p {
  margin: 0;
  color: #2e4064;
  font-size: 1rem;
  line-height: 1.74;
}

.pps-home-testimonial-card > div {
  margin-top: auto;
  border-top: 1px solid #dce4f2;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pps-home-testimonial-card strong {
  color: #0e172b;
  font-size: 0.95rem;
}

.pps-home-testimonial-card span {
  color: #5c6f94;
  font-size: 0.95rem;
}

.pps-home-why {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #0d1016;
  color: #fff;
  padding-top: 5rem;
  padding-bottom: 3.2rem;
}

.pps-home-why h2 {
  margin-top: 0.55rem;
  color: #fff;
}

.pps-home-why-grid {
  margin-top: 2.6rem;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pps-home-why-mobile {
  display: none;
}

.pps-home-why-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: #101726;
  padding: 28px;
  transition: 0.25s ease;
}

.pps-home-why-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 102, 255, 0.7);
}

.pps-home-why-icon {
  display: inline-flex;
  width: 36px;
  height: 36px;
  color: #0066ff;
}

.pps-home-why-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentcolor;
}

.pps-home-why-card h3 {
  margin: 1.05rem 0 0;
  color: #fff;
  font-size: var(--pps-type-card-title-compact);
  line-height: var(--pps-line-card-title);
}

.pps-home-why-card p {
  margin: 0.95rem 0 0;
  color: #c4ccdb;
  font-size: 1rem;
  line-height: 1.625;
}

.pps-home-contact {
  position: relative;
  overflow: hidden;
  background: #eef3fb;
  color: #0c1220;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.pps-home-contact-ring {
  pointer-events: none;
  position: absolute;
  right: -14rem;
  top: 5rem;
  width: 24rem;
  height: 24rem;
  border: 1px solid #d3dced;
  border-radius: 999px;
}

.pps-home-contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
}

.pps-home-contact-intro h2 {
  margin: 0;
  color: #0b1324;
  font-size: 2.25rem;
  line-height: 1.2;
}

.pps-home-contact-intro p {
  margin: 1.25rem 0 0;
  max-width: 37rem;
  color: #3f4e6e;
  font-size: 1.125rem;
  line-height: 1.625;
}

.pps-home-contact-form,
.pps-home-contact-direct {
  border: 1px solid #d6dff0;
  border-radius: 16px;
  background: #f8fbff;
}

.pps-home-contact-form {
  grid-column: 2;
  grid-row: 1 / span 2;
  padding: 26px;
}

.pps-home-form-progress {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}

.pps-home-form-progress span {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e4ebf7;
  color: #64799f;
  font-size: 0.9rem;
  font-weight: 600;
}

.pps-home-form-progress span.active,
.pps-home-form-progress span.completed {
  background: var(--pps-accent);
  color: #fff;
}

.pps-home-form-progress i {
  margin: 0 10px;
  height: 4px;
  flex: 1;
  border-radius: 999px;
  background: #d4ddee;
}

.pps-home-form-progress i.active {
  background: var(--pps-accent);
}

.pps-home-form-step {
  display: grid;
  gap: 12px;
}

.pps-home-form-step[hidden],
[data-contact-step][hidden] {
  display: none !important;
}

.pps-home-form-step label,
.pps-home-form-step legend {
  color: #41547a;
  font-size: 0.96rem;
}

.pps-home-form-step input,
.pps-home-form-step select,
.pps-home-form-step textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid #d3dced;
  border-radius: 8px;
  background: #eef3fb;
  color: #0b1324;
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.pps-home-form-step input,
.pps-home-form-step select {
  height: 48px;
  padding: 0 12px;
}

.pps-home-form-step textarea {
  resize: vertical;
  min-height: 120px;
  padding: 10px 12px;
}

.pps-home-form-step input:focus,
.pps-home-form-step select:focus,
.pps-home-form-step textarea:focus {
  border-color: var(--pps-accent);
}

.pps-home-form-two-col {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pps-home-form-step fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

.pps-home-form-step fieldset label {
  margin-top: 12px;
  margin-right: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0b1324;
  font-size: 0.95rem;
}

.pps-home-form-step fieldset input[type='radio'] {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--pps-accent);
}

.pps-home-form-error {
  margin: -4px 0 0;
  color: #b42318;
  font-size: 0.9rem;
  min-height: 1.2em;
}

.pps-home-form-actions {
  margin-top: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pps-home-form-success {
  border: 1px solid #d6dff0;
  border-radius: 12px;
  background: #eef3fb;
  padding: 24px;
}

.pps-home-form-success-title {
  margin: 0;
  color: #0b1324;
  font-size: 1.7rem;
  font-weight: 600;
}

.pps-home-form-success p {
  margin: 0.8rem 0 0;
  color: #41547a;
}

.pps-home-contact-direct {
  grid-column: 1;
  grid-row: 2;
  padding: 28px;
  display: grid;
  gap: 14px;
  align-content: start;
}

.pps-home-contact-direct .pps-eyebrow {
  margin: 0 0 6px;
  color: #4f6287;
}

.pps-home-contact-direct a {
  color: #0b1324;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  transition: color 0.2s ease;
  line-height: 1.55;
}

.pps-home-contact-direct a svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 4px;
  stroke: currentcolor;
}

.pps-home-contact-direct a:hover {
  color: #0066ff;
}

@media (min-width: 640px) {
  .pps-hero-inner,
  .pps-home-hero-inner {
    padding-top: 10rem;
    padding-bottom: 6rem;
  }

  .pps-hero-copy,
  .pps-home-hero-copy {
    padding-left: 2rem;
  }

  .pps-hero h1,
  .pps-home-hero-copy h1 {
    font-size: var(--pps-type-hero-md);
  }

  .pps-hero p,
  .pps-home-hero-copy p {
    font-size: 1.25rem;
  }

  .pps-hero-actions,
  .pps-home-hero-actions {
    flex-direction: row;
    align-items: center;
  }

  .pps-trustbar {
    margin-top: 5rem;
    margin-bottom: -8rem;
  }

  .pps-trustbar-card {
    padding: 32px;
  }

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

  .pps-home-about-grid {
    padding-top: 16rem;
  }

  .pps-home-about-media-wrap {
    padding: 16px;
  }

  .pps-home-about-media-wrap img {
    height: 24rem;
  }

  .pps-section h2,
  .pps-home-about-copy h2,
  .pps-home-services h2,
  .pps-home-testimonials h2,
  .pps-home-who-slab h2,
  .pps-home-contact-intro h2 {
    font-size: var(--pps-type-heading-md);
  }

  .pps-home-who-actions {
    flex-direction: row;
    align-items: center;
  }
}

@media (min-width: 768px) {
  .pps-section {
    padding-block: 6rem;
  }

  .pps-home-who-slab {
    padding: 3rem;
  }

  .pps-home-sector-tile {
    height: 10rem;
  }

  .pps-home-who-actions {
    justify-content: flex-end;
  }

  .pps-home-client-marquee {
    margin-bottom: 1rem;
    padding-top: 0;
    padding-bottom: 0.5rem;
  }
}

@media (min-width: 1024px) {
  .pps-hero-inner,
  .pps-home-hero-inner {
    padding-top: 12rem;
    padding-bottom: 7rem;
  }

  .pps-section {
    padding-block: 7rem;
  }

  .pps-hero h1,
  .pps-home-hero-copy h1 {
    font-size: var(--pps-type-hero-lg);
  }

  .pps-trustbar-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .pps-home-about-grid {
    padding-bottom: 7rem;
  }

  .pps-home-services,
  .pps-home-testimonials,
  .pps-home-why,
  .pps-home-contact {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .pps-home-services .pps-container {
    padding-top: 7rem;
  }

  .pps-home-slider-viewport {
    padding-bottom: 7rem;
  }

  .pps-home-who .pps-container {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

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

@media (prefers-reduced-motion: reduce) {
  .pps-home-client-track {
    animation: none;
    transform: translateX(0);
  }

  .pps-home-slider-track,
  .pps-home-testimonials-track {
    transition: none;
  }

  .pps-home-why-mobile-card {
    transition: none;
  }
}

.pps-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #090b12;
  color: #d7dbe6;
}

.pps-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1fr 1fr 1fr;
  gap: 40px;
  padding-block: 72px 64px;
}

body.pps-site .pps-footer h4 {
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: var(--pps-type-eyebrow);
  line-height: 1.35;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  color: #5f759e;
}

.pps-footer p {
  margin: 0;
  color: #b7c0d3;
  font-size: var(--pps-type-body-sm);
  line-height: var(--pps-line-body-lg);
  font-weight: 400;
}

.pps-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pps-footer ul a,
.pps-footer-mobile-panel a {
  width: fit-content;
  font-size: var(--pps-type-body-sm);
  line-height: var(--pps-line-body-sm);
  font-weight: 400;
  color: #c9d0dd;
  transition: color 0.2s ease;
}

.pps-footer a:hover {
  color: #fff;
}

.pps-footer-logo {
  height: 96px;
  width: auto;
  margin-bottom: 16px;
}

.pps-footer-brand {
  max-width: 360px;
}

.pps-footer-desktop-cta {
  margin-top: 24px;
}

.pps-footer-contact-list {
  display: grid;
  gap: 12px;
}

.pps-footer-contact-list a {
  display: inline-flex;
  width: fit-content;
  align-items: flex-start;
  gap: 8px;
  font-size: var(--pps-type-body-sm);
  line-height: var(--pps-line-body-sm);
  font-weight: 400;
  color: #c9d0dd;
}

.pps-footer-contact-list svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 4px;
  stroke: currentcolor;
}

.pps-footer-mobile {
  display: none;
}

.pps-footer-mobile-section {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: #0d111b;
}

.pps-footer-mobile-trigger {
  width: 100%;
  border: 0;
  background: transparent;
  color: #e5e7ee;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.pps-footer-mobile-chevron {
  color: #9ea8bb;
  transition: transform 0.2s ease;
}

.pps-footer-mobile-trigger[aria-expanded='true'] .pps-footer-mobile-chevron {
  transform: rotate(180deg);
}

.pps-footer-mobile-panel {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pps-footer-mobile-contact a {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.6;
}

.pps-footer-mobile-contact svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 4px;
  stroke: currentcolor;
}

.pps-footer-mobile-cta {
  width: 100%;
  margin-top: 4px;
}

.pps-footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-block: 22px;
  color: #9fa8bb;
  font-size: 12px;
}

.pps-footer-legal-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

@media (min-width: 640px) {
  .pps-footer-legal-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }
}

.pps-footer-998 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #9fa8bb;
  font-size: 12px;
  transition: color 0.2s ease;
}

.pps-footer-998:hover {
  color: #d8deea;
}

.pps-footer-998-mark {
  width: 36px;
  height: 16px;
  display: inline-block;
  background: currentcolor;
  -webkit-mask-image: url('../img/998-logo.svg');
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: url('../img/998-logo.svg');
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.pps-hero-fade {
  position: absolute;
  left: 0;
  right: 0;
  top: auto;
  bottom: 0;
  height: 10rem;
  background: linear-gradient(to top, #0a0a0f 0%, rgba(10, 10, 15, 0) 100%);
  pointer-events: none;
}

.pps-about-intro {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #d9e1f1;
  background: #eef3fb;
}

.pps-about-intro::before {
  content: '';
  position: absolute;
  left: -10rem;
  top: -10rem;
  width: 34rem;
  height: 34rem;
  border: 1px solid #cad7ee;
  border-radius: 999px;
  pointer-events: none;
}

.pps-about-intro .pps-two-col {
  position: relative;
  z-index: 1;
  align-items: center;
  gap: 56px;
}

.pps-about-cards {
  position: relative;
  overflow: visible;
  border-bottom: 1px solid #d9e1f1;
  background: #fff;
}

.pps-about-cards::before {
  content: '';
  position: absolute;
  right: -11rem;
  top: -11rem;
  width: 38rem;
  height: 38rem;
  border: 1px solid #dce6f5;
  border-radius: 999px;
  pointer-events: none;
}

.pps-about-cards::after {
  content: '';
  position: absolute;
  left: -8rem;
  bottom: -8rem;
  width: 20rem;
  height: 20rem;
  border: 1px solid #e7edf8;
  border-radius: 999px;
  pointer-events: none;
}

.pps-about-cards .pps-container {
  position: relative;
  z-index: 1;
}

.pps-about-cards-desktop-copy {
  display: block;
}

.pps-about-cards-desktop-grid {
  display: grid;
}

.pps-about-cards-mobile {
  display: none;
}

.pps-about-cards-mobile-intro {
  display: none;
}

body.page-about .pps-hero {
  min-height: 36rem;
}

.pps-about-cards .pps-card {
  min-height: 0;
  border-radius: 16px;
  border: 1px solid #d6dff0;
  background: #f8fbff;
}

.pps-about-cards .pps-support-card {
  padding: 32px 30px 28px;
  gap: 0;
}

.pps-about-card-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  background: #e8f0ff;
  color: #0066ff;
}

.pps-about-card-icon svg {
  width: 24px;
  height: 24px;
}

.pps-about-card-icon svg,
.pps-about-card-icon svg * {
  stroke: currentcolor;
}

.pps-about-cards .pps-support-card h3 {
  margin-top: 16px;
}

.pps-about-cards .pps-support-card p {
  margin-top: 12px;
}

.pps-about-cards .pps-section-intro {
  margin-top: 56px;
  max-width: 68ch;
}

.pps-about-timeline {
  position: relative;
  overflow: hidden;
  border-top: 1px solid #d9e1f1;
  background: #eef3fb;
}

.pps-about-timeline::before {
  content: '';
  position: absolute;
  right: -7rem;
  top: -5rem;
  width: 20rem;
  height: 20rem;
  border: 1px solid #d5e0f2;
  border-radius: 999px;
  pointer-events: none;
}

.pps-about-timeline::after {
  content: '';
  position: absolute;
  left: -5rem;
  bottom: -6rem;
  width: 16rem;
  height: 16rem;
  border: 1px solid #dbe5f4;
  border-radius: 999px;
  pointer-events: none;
}

.pps-about-timeline .pps-container {
  position: relative;
  z-index: 1;
}

.pps-about-timeline-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 32px;
  align-items: stretch;
}

.pps-about-timeline-list {
  list-style: none;
  margin: 0 0 0 8px;
  padding: 0 0 0 40px;
  position: relative;
  display: grid;
}

.pps-about-timeline-list::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 10px;
  width: 2px;
  background: #d3dced;
}

.pps-about-timeline-list li {
  position: relative;
  padding: 0 0 40px;
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.pps-about-timeline-list li:last-child {
  padding-bottom: 0;
}

.pps-about-timeline-list li::before {
  content: '';
  position: absolute;
  left: -47px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 0;
  background: #b9c7df;
  transition: background-color 0.25s ease;
}

.pps-about-timeline-list li.is-active::before {
  background: #0066ff;
}

.pps-about-timeline-list li:focus-visible {
  outline: 2px solid #0066ff;
  outline-offset: 6px;
  border-radius: 10px;
}

.pps-about-timeline-list p {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: var(--pps-type-body-sm);
  font-weight: 600;
  color: #4f6287;
}

.pps-about-timeline-list h3 {
  margin: 10px 0 0;
  font-size: var(--pps-type-card-title);
  line-height: var(--pps-line-card-title);
  letter-spacing: -0.01em;
  color: #0b1324;
}

.pps-about-timeline-list span {
  display: block;
  margin-top: 12px;
  color: #41547a;
  font-size: var(--pps-type-body);
  line-height: var(--pps-line-body);
  font-weight: 400;
  max-width: 54ch;
}

.pps-about-timeline-media {
  position: sticky;
  top: 116px;
  align-self: stretch;
  height: 100%;
  min-height: 42rem;
  border: 1px solid #d6dff0;
  border-radius: 24px;
  background: #f8fbff;
  box-shadow: 0 16px 35px rgba(12, 18, 32, 0.12);
  overflow: hidden;
}

.pps-about-timeline-media-item {
  margin: 0;
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.pps-about-timeline-media-item.is-active {
  opacity: 1;
}

.pps-about-timeline-media-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.pps-about-timeline-media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5, 7, 13, 0.08) 0%,
    rgba(5, 7, 13, 0) 46%,
    rgba(5, 7, 13, 0.1) 100%
  );
  pointer-events: none;
  z-index: 2;
}

.pps-about-timeline-media-overlay {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 3;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.35);
  padding: 12px 16px;
  backdrop-filter: blur(2px);
}

.pps-about-timeline-media-date {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: var(--pps-type-body-sm);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.pps-about-timeline-media-title {
  margin: 6px 0 0;
  font-size: 1.125rem;
  line-height: 1.2;
  font-weight: 600;
  color: #fff;
}

.pps-about-timeline-mobile-hint {
  display: none;
  margin: 8px 0 0;
  color: #4f6287;
  font-size: var(--pps-type-body-sm);
}

.pps-about-cta-strip {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #0c162b;
  padding-block: 4rem;
}

.pps-about-cta-strip::before {
  content: '';
  position: absolute;
  right: -5rem;
  top: -4rem;
  width: 14rem;
  height: 14rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  pointer-events: none;
}

.pps-about-cta-strip-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.pps-about-cta-strip-inner h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.875rem, 3vw, 2.25rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
}

.pps-about-cta-strip-inner p {
  margin: 12px 0 0;
  max-width: 52rem;
  color: #d0d6e2;
  font-size: var(--pps-type-body);
  line-height: var(--pps-line-body-lg);
  font-weight: 400;
}

.pps-about-cta-strip-inner .pps-cta-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

@media (max-width: 1023px) {
  .pps-about-timeline,
  .pps-about-timeline .pps-container {
    overflow: visible;
  }

  .pps-about-timeline-grid {
    margin-top: 28px;
    display: block;
  }

  .pps-about-timeline-media {
    display: none;
  }

  .pps-about-timeline-list {
    --pps-timeline-card-width: calc(100vw - 48px);
    --pps-timeline-first-dot-center: 24px;
    position: relative;
    display: flex;
    gap: 24px;
    margin-inline: calc(50% - 50vw);
    padding: 52px 24px 52px;
    border-left: 0;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 24px;
    touch-action: pan-x;
    overscroll-behavior-y: contain;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .pps-about-timeline-list::-webkit-scrollbar {
    display: none;
  }

  .pps-about-timeline-list::before {
    content: '';
    position: absolute;
    left: var(--pps-timeline-first-dot-center);
    right: auto;
    top: 26px;
    bottom: auto;
    height: 2px;
    background: #d3dced;
    width: calc(
      (var(--pps-timeline-count, 1) * var(--pps-timeline-card-width)) +
      ((var(--pps-timeline-count, 1) - 1) * 24px) -
      8px
    );
  }

  .pps-about-timeline-list li {
    flex: 0 0 var(--pps-timeline-card-width);
    min-height: 18rem;
    padding: 24px;
    border: 1px solid #d6dff0;
    border-radius: 16px;
    background: #f8fbff;
    box-shadow: 0 12px 20px rgba(12, 18, 32, 0.1);
    scroll-snap-align: start;
  }

  .pps-about-timeline-list li::before {
    left: 50%;
    top: -36px;
    transform: translateX(-50%);
  }

  .pps-about-timeline-list li:first-child::before {
    left: 0;
    transform: none;
  }

  .pps-about-timeline-list li:last-child::before {
    left: calc(100% - 16px);
    transform: none;
  }

  .pps-about-timeline-list span {
    max-width: none;
  }

  .pps-about-timeline-mobile-hint {
    display: block;
  }
}

@media (max-width: 640px) {
  .pps-about-timeline-list {
    --pps-timeline-card-width: calc(100vw - 48px);
    --pps-timeline-first-dot-center: 24px;
    margin-inline: calc(50% - 50vw);
    padding: 52px 24px 52px;
    scroll-padding-inline: 24px;
  }

  .pps-about-timeline-list li {
    flex-basis: calc(100vw - 48px);
  }
}

.pps-sector-slider-viewport,
.pps-aftercare-slider-viewport {
  padding-left: max(24px, calc((100vw - 78rem) / 2 + 24px));
  overflow: visible;
}

.pps-sector-slide,
.pps-aftercare-slide {
  position: relative;
  flex: 0 0 33.333%;
  min-width: 0;
  padding: 0 10px 24px;
}

.pps-sector-slide-image {
  overflow: hidden;
  border: 1px solid #d8e0f0;
  border-radius: 8px;
  background: #dde5f4;
}

.pps-sector-slide-image img {
  width: 100%;
  height: 18rem;
  object-fit: cover;
}

.pps-sector-slide-card {
  position: relative;
  z-index: 2;
  margin: -4rem 20px 0;
  min-height: 31rem;
  display: flex;
  flex-direction: column;
  border: 1px solid #d9e1f2;
  border-radius: 14px;
  background: #f7f9fd;
  box-shadow: 0 14px 35px rgba(15, 25, 45, 0.13);
  padding: 24px;
  transition: 0.25s ease;
}

.pps-sector-slide:hover .pps-sector-slide-card {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(0, 102, 255, 0.18);
}

.pps-sector-slide-card h3 {
  margin: 0;
  color: #0b1324;
  font-size: var(--pps-type-card-title);
  line-height: var(--pps-line-card-title);
  letter-spacing: -0.01em;
}

.pps-sector-slide-card p {
  margin: 0.8rem 0 0;
  color: #4c5f84;
  font-size: 1.05rem;
  line-height: 1.66;
}

.pps-sector-slide-card .pps-mini-heading {
  margin-top: 1rem;
}

.pps-sector-slide-card .pps-inline-bullets {
  margin-top: 6px;
  font-size: 15px;
}

.pps-sector-slide-card .pps-btn {
  margin-top: auto;
}

.pps-aftercare-card {
  min-height: 29rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid #d6dff0;
  border-radius: 16px;
  background: #f8fbff;
  box-shadow: 0 14px 35px rgba(15, 25, 45, 0.1);
  padding: 24px;
  transition: 0.25s ease;
}

.pps-aftercare-slide:hover .pps-aftercare-card {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(0, 102, 255, 0.16);
}

.pps-aftercare-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: #e8f0ff;
  color: #0066ff;
  align-items: center;
  justify-content: center;
}

.pps-aftercare-icon svg {
  width: 24px;
  height: 24px;
}

.pps-aftercare-icon svg,
.pps-aftercare-icon svg * {
  stroke: currentcolor;
}

.pps-aftercare-card h3 {
  margin: 16px 0 0;
  font-size: var(--pps-type-card-title);
  line-height: var(--pps-line-card-title);
  letter-spacing: -0.01em;
  color: #0b1324;
}

.pps-aftercare-card p {
  margin: 14px 0 0;
  color: #41547a;
}

.pps-aftercare-card .pps-inline-bullets {
  margin-top: 14px;
}

.pps-map-section {
  border-top: 1px solid #d9e1f1;
  background: #fff;
}

.pps-map-section .pps-eyebrow {
  color: #4f6287;
}

.pps-map-link {
  margin-top: 14px;
}

.pps-map-link a {
  color: #0066ff;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.pps-map-link a:hover {
  color: #0052cc;
}

.pps-map-wrap {
  margin-top: 20px;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid #d6dff0;
  background: #fff;
  line-height: 0;
  box-shadow: 0 16px 35px rgba(12, 18, 32, 0.12);
}

.pps-map-wrap iframe {
  display: block;
  vertical-align: top;
  width: 100%;
  border: 0;
  height: 520px;
}

@media (max-width: 1200px) {
  .pps-home-service-card h3,
  .pps-sector-slide-card h3,
  .pps-aftercare-card h3,
  .pps-image-card h3,
  .pps-support-card h3,
  .pps-about-timeline-list h3 {
    font-size: var(--pps-type-card-title-md);
  }

  .pps-card-grid-3,
  .pps-manuals-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pps-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1023px) {
  .pps-home-about-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 8rem;
    padding-bottom: 5rem;
  }

  .pps-home-about-media-wrap {
    order: 2;
  }

  .pps-home-about-copy {
    order: 1;
  }

  .pps-home-slider-nav {
    margin-top: 2rem;
    gap: 14px;
  }

  .pps-home-slider-viewport {
    padding-left: 16px;
    padding-bottom: 12px;
  }

  .pps-sector-slider-viewport,
  .pps-aftercare-slider-viewport {
    padding-left: 16px;
    padding-bottom: 12px;
  }

  .pps-home-service-slide,
  .pps-sector-slide,
  .pps-aftercare-slide,
  .pps-home-testimonial {
    padding-inline: 8px;
  }

  .pps-home-service-card {
    margin: -4rem 16px 0;
    min-height: 0;
  }

  .pps-home-testimonial-card,
  .pps-sector-slide-card,
  .pps-aftercare-card {
    min-height: 0;
  }

  .pps-home-service-card p {
    font-size: 1.04rem;
  }

  .pps-sector-slide-card h3,
  .pps-aftercare-card h3,
  .pps-about-timeline-list h3,
  .pps-home-service-card h3,
  .pps-image-card h3,
  .pps-support-card h3 {
    font-size: var(--pps-type-card-title-sm);
  }

  .pps-home-why-grid {
    grid-template-columns: 1fr;
  }

  .pps-home-contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pps-home-contact-form,
  .pps-home-contact-direct {
    grid-column: auto;
    grid-row: auto;
  }

  .pps-home-form-two-col {
    grid-template-columns: 1fr;
  }

  .pps-nav-toggle {
    display: inline-flex;
  }

  .pps-brand span {
    display: none;
  }

  .pps-header-actions {
    display: none;
  }

  .pps-header-nav-wrap {
    flex: 0 0 auto;
    min-width: 0;
  }

  .pps-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    background: #090b12;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px 24px;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }

  .pps-nav.pps-open {
    display: flex;
  }

  .pps-nav-list {
    display: none;
  }

  .pps-mobile-nav {
    display: grid;
    gap: 4px;
  }

  .pps-mobile-nav-trigger,
  .pps-mobile-nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    text-align: left;
    padding: 8px 12px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #e4e7ef;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.015em;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
  }

  .pps-mobile-nav-trigger:hover,
  .pps-mobile-nav-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
  }

  .pps-mobile-nav-trigger svg {
    width: 16px;
    height: 16px;
    stroke: currentcolor;
    transition: transform 0.2s ease;
  }

  .pps-mobile-nav-trigger[aria-expanded='true'] svg {
    transform: rotate(180deg);
  }

  .pps-mobile-nav-panel {
    display: flex;
    flex-direction: column;
    gap: 1px;
    margin: 0 0 4px 14px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 10px;
  }

  .pps-mobile-nav-panel a,
  .pps-mobile-nav-disabled {
    border-radius: 8px;
    padding: 8px 12px;
    color: #c1c6d3;
    font-size: 14px;
    line-height: 1.45;
    transition: background-color 0.2s ease, color 0.2s ease;
  }

  .pps-mobile-nav-panel a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
  }

  .pps-mobile-nav-disabled {
    color: #6c7486;
  }

  .pps-mobile-nav-actions {
    margin-top: 10px;
    display: grid;
    gap: 12px;
  }

  .pps-mobile-nav-actions .pps-btn {
    width: 100%;
  }

  .pps-mega {
    display: none !important;
  }

  .pps-hero-copy {
    padding-left: 16px;
  }

  .pps-hero h1 {
    font-size: var(--pps-type-hero);
  }

  .pps-hero p {
    font-size: var(--pps-type-body);
    line-height: var(--pps-line-body);
  }

  .pps-two-col,
  .pps-cta-block,
  .pps-about-cta-strip-inner,
  .pps-manuals-filter-grid,
  .pps-type-row {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .pps-sector-tile-grid,
  .pps-feature-grid,
  .pps-card-grid-3,
  .pps-manuals-cards {
    grid-template-columns: 1fr;
  }

  .pps-section-intro {
    font-size: var(--pps-type-body);
    line-height: var(--pps-line-body);
  }

  .pps-sector-tile span {
    font-size: 21px;
  }

  .pps-manuals-header {
    align-items: flex-start;
  }

  .pps-manuals-empty {
    flex-direction: column;
    align-items: flex-start;
  }

  .pps-about-cta-strip {
    padding-block: 3.5rem;
  }

  .pps-about-cta-strip-inner .pps-cta-buttons {
    width: 100%;
    flex-wrap: wrap;
  }
}

@media (max-width: 767px) {
  body.page-about .pps-hero {
    min-height: 38rem;
  }

  body.page-about .pps-hero-inner {
    padding-top: 8rem;
    padding-bottom: 5.75rem;
  }

  body.page-about .pps-hero-media img {
    object-position: center 30%;
  }

  .pps-about-cards .pps-section-intro {
    margin-top: 76px;
  }

  .pps-about-cards-desktop-intro {
    display: none;
  }

  .pps-about-cards-desktop-copy,
  .pps-about-cards-desktop-grid {
    display: none;
  }

  .pps-about-cards-mobile {
    display: block;
  }

  .pps-about-cards-mobile-sticky {
    position: sticky;
    top: 96px;
    z-index: 10;
  }

  .pps-about-cards-mobile-sticky .pps-eyebrow {
    color: #4f6287;
  }

  .pps-about-cards-mobile-sticky h2 {
    margin-top: 12px;
  }

  .pps-about-cards-mobile-stage {
    margin-top: 18px;
    position: relative;
    width: 100%;
    height: 20.25rem;
  }

  .pps-about-cards-mobile-card.pps-support-card {
    padding: 20px 18px 16px;
  }

  .pps-about-cards-mobile-card {
    position: absolute;
    inset: 0;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
    will-change: transform, opacity;
  }

  .pps-about-cards-mobile-track {
    pointer-events: none;
  }

  .pps-about-cards-mobile-intro {
    display: block;
    margin-top: 76px;
    transform: translateY(0);
    opacity: 1;
    will-change: transform, opacity;
  }

  .pps-home-why {
    padding-bottom: 7rem;
  }

  .pps-home-why-desktop-copy {
    display: none;
  }

  .pps-home-why-mobile {
    display: block;
  }

  .pps-home-why-mobile-sticky {
    position: sticky;
    top: 80px;
    z-index: 10;
    padding-top: 46px;
  }

  .pps-home-why-mobile-sticky .pps-eyebrow {
    color: #9ca4b6;
  }

  .pps-home-why-mobile-sticky h2 {
    margin-top: 12px;
    color: #fff;
    font-size: 2.25rem;
    line-height: 1.1;
    letter-spacing: -0.01em;
  }

  .pps-home-why-mobile-stage {
    margin-top: 20px;
    position: relative;
    width: 100%;
    height: 20rem;
  }

  .pps-home-why-mobile-card {
    position: absolute;
    inset: 0;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
    will-change: transform, opacity;
  }

  .pps-home-why-mobile-track {
    pointer-events: none;
  }

  .pps-home-service-card {
    min-height: 24rem;
  }

  .pps-home-testimonial-card {
    min-height: 24rem;
  }

  .pps-home-sector-content {
    gap: 8px;
    padding: 10px;
  }

  .pps-home-sector-icon {
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .pps-home-sector-description {
    width: 92%;
    font-size: 0.875rem;
    line-height: 1.35;
    transform: translate(-50%, -50%);
  }

  .pps-home-sector-tile:hover .pps-home-sector-icon,
  .pps-home-sector-tile:focus-visible .pps-home-sector-icon {
    opacity: 0;
    transform: translateY(-6px);
  }

  .pps-home-sector-tile:hover .pps-home-sector-description,
  .pps-home-sector-tile:focus-visible .pps-home-sector-description {
    transform: translate(-50%, -50%);
  }

  .pps-footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-block: 40px 24px;
  }

  .pps-footer-links-col,
  .pps-footer-contact-col,
  .pps-footer-desktop-cta {
    display: none;
  }

  .pps-footer-mobile {
    display: grid;
    gap: 12px;
    padding-bottom: 28px;
  }

  .pps-footer-legal-inner {
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .pps-about-timeline-list::before {
    left: var(--pps-timeline-first-dot-center);
    width: calc(
      (var(--pps-timeline-count, 1) * var(--pps-timeline-card-width)) +
      ((var(--pps-timeline-count, 1) - 1) * 24px) -
      8px
    );
  }

  .pps-trustbar-grid .pps-trustbar-item:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(100%, calc((100% - 12px) / 2));
  }

  .pps-home-who-actions {
    align-items: stretch;
  }

  .pps-home-who-actions .pps-btn {
    width: 100%;
    justify-content: center;
  }

  .pps-home-form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .pps-home-form-actions .pps-btn {
    width: 100%;
  }

  .pps-about-cta-strip-inner .pps-cta-buttons .pps-btn {
    width: 100%;
    justify-content: center;
  }

  .pps-home-contact-form,
  .pps-home-contact-direct,
  .pps-trustbar-card,
  .pps-home-who-slab {
    padding: 18px;
  }

  .pps-map-wrap iframe {
    height: 420px;
  }

  .pps-trustbar {
    margin-bottom: -3.5rem;
  }

  .pps-home-about-media-wrap {
    padding: 12px;
  }

  .pps-home-about-media-frame {
    inset: 20px;
  }

}
