/*
 * Homepage 2026 theme-native implementation.
 * Content source: production homepage. Visual source: Figma WOR-440 proposal.
 */

.ps-home {
  --ps-home-radius-lg: 40px;
  --ps-home-radius-md: 28px;
  --ps-home-radius-sm: 20px;
  background: var(--ps-home-bg);
  color: var(--ps-home-black);
  font-family: var(--ps-font-sans);
  grid-column: 1 / -1;
  width: 100%;
  overflow: hidden;
  text-align: left;
}

.ps-home-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.ps-home section {
  display: block;
  max-width: none;
}

.ps-home *,
.ps-home *::before,
.ps-home *::after {
  box-sizing: border-box;
}

.ps-home__shell {
  width: min(100% - 48px, 1440px);
  margin: 0 auto;
}

.ps-home .ps-home__kicker {
  margin: 0 0 14px;
  color: #666666;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 26px;
}

.ps-home h1,
.ps-home h2,
.ps-home h3,
.ps-home p {
  margin-top: 0;
}

.ps-home h1 {
  max-width: 528px;
  margin-bottom: 34px;
  font-family: var(--ps-font-display);
  font-size: clamp(58px, 4.75vw, 68px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 74px;
}

.ps-home h2 {
  margin-bottom: 22px;
  font-family: var(--ps-font-sans);
  font-size: 48px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 52px;
}

.ps-home h3 {
  font-family: var(--ps-font-sans);
  font-size: 32px;
  font-weight: 500;
  line-height: 40px;
  letter-spacing: 0;
}

.ps-home p {
  color: var(--ps-home-muted);
  font-size: 18px;
  letter-spacing: 0;
  line-height: 1.48;
}

.ps-home-section-head {
  max-width: 820px;
  text-align: left;
}

.ps-home-section-head p:last-child {
  max-width: 640px;
  margin-bottom: 0;
  color: #666666;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 26px;
  text-align: left;
}

.ps-home-hero {
  position: relative;
  padding: 15px 0 150px;
  background: var(--ps-home-bg);
}

.ps-home-hero__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.ps-home-hero__copy {
  min-height: 516px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 32px 0 0;
  text-align: left;
}

.ps-home-hero__copy .ps-home__kicker {
  display: none;
}

.ps-home .ps-home-hero__lead {
  max-width: 480px;
  margin-bottom: 34px;
  color: var(--ps-home-black);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 32px;
}

.ps-home-hero__actions,
.ps-home-career__actions,
.ps-home-final__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.ps-home-hero__grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.ps-home-card {
  position: relative;
  min-height: 348px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 16px;
  border-radius: 24px;
  color: var(--ps-home-black);
  isolation: isolate;
  text-align: left;
}

.ps-home-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--white);
}

.ps-home-card::after {
  content: "\2197";
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 1;
  color: currentColor;
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
  filter: none;
}

.ps-home-card:hover,
.ps-home-card:focus-visible {
  color: var(--ps-home-black);
  z-index: 2;
  transform: scale(1.02);
}

.ps-home-card--image-about:hover,
.ps-home-card--image-about:focus-visible {
  color: var(--ps-home-soft-white);
}

.ps-home-card {
  transition: transform .8s ease, box-shadow .3s ease, opacity .82s ease;
  transform-origin: center;
}

.ps-home-hero__teaser {
  opacity: 0;
  transform: translate3d(0, 168px, 0);
  transition: opacity 1.64s ease, transform 1.64s cubic-bezier(.16, 1, .3, 1), box-shadow .3s ease;
  will-change: opacity, transform;
}

.ps-home-hero.has-entered .ps-home-hero__teaser {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.ps-home-hero.has-entered .ps-home-hero__teaser:nth-child(1),
.ps-home-hero.has-entered .ps-home-hero__teaser:nth-child(2) {
  transition-delay: 0ms;
}

.ps-home-hero.has-entered .ps-home-hero__teaser:nth-child(3) {
  transition-delay: 500ms;
}

.ps-home-hero.has-entered .ps-home-hero__teaser:nth-child(4) {
  transition-delay: 1000ms;
}

.ps-home-hero.has-entered-complete .ps-home-hero__teaser {
  transition-delay: 0ms;
  transition-duration: .8s, .8s, .3s;
}

.ps-home-hero.has-entered-complete .ps-home-hero__teaser:nth-child(1),
.ps-home-hero.has-entered-complete .ps-home-hero__teaser:nth-child(2),
.ps-home-hero.has-entered-complete .ps-home-hero__teaser:nth-child(3),
.ps-home-hero.has-entered-complete .ps-home-hero__teaser:nth-child(4) {
  transition-delay: 0ms;
}

.ps-home-hero.has-entered .ps-home-hero__teaser:hover,
.ps-home-hero.has-entered .ps-home-hero__teaser:focus-visible {
  transform: translate3d(0, 0, 0) scale(1.02);
}

.ps-home-results__card {
  transition: transform .28s ease, box-shadow .28s ease;
}

.ps-home-hero__feature {
  position: relative;
  min-height: 516px;
  display: block;
  overflow: hidden;
  border-radius: 24px;
  background: var(--ps-home-black);
  text-align: left;
  isolation: isolate;
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 1.9s ease, transform 1.9s cubic-bezier(.16, 1, .3, 1);
  will-change: opacity, transform;
}

.ps-home-hero__feature.is-enter-pending {
  opacity: 0;
  transform: translate3d(420px, 0, 0);
}

.ps-home-hero__feature.is-entered {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.ps-home-hero__feature::before,
.ps-home-hero__feature::after {
  display: none;
}

.ps-home-hero__slides,
.ps-home-hero__slide {
  position: absolute;
  inset: 0;
  border-radius: inherit;
}

.ps-home-hero__slide {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 24px;
  color: var(--ps-home-soft-white);
  opacity: 0;
  text-decoration: none;
  transition: opacity .8s ease, visibility .8s ease;
  visibility: hidden;
}

.ps-home-hero__slide.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
}

.ps-home-hero__slide:hover,
.ps-home-hero__slide:focus-visible {
  color: var(--ps-home-soft-white);
}

.ps-home-hero__slide--career:hover,
.ps-home-hero__slide--career:focus-visible {
  color: var(--ps-home-black);
}

.ps-home-hero__slide:hover .ps-home-hero__slide-body strong,
.ps-home-hero__slide:focus-visible .ps-home-hero__slide-body strong,
.ps-home-hero__slide:hover .ps-home-hero__slide-eyebrow,
.ps-home-hero__slide:focus-visible .ps-home-hero__slide-eyebrow {
  color: currentColor;
}

.ps-home-hero__slide--career:hover .ps-home-hero__slide-body span:not(.ps-home-hero__slide-button),
.ps-home-hero__slide--career:focus-visible .ps-home-hero__slide-body span:not(.ps-home-hero__slide-button) {
  color: #666666;
}

.ps-home-hero__slide-button:hover,
.ps-home-hero__slide-button:focus-visible {
  background: #233d42;
  color: #e9e9e9;
}

.ps-home-hero__slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  border-radius: inherit;
}

.ps-home-hero__slide--image::before {
  background:
    linear-gradient(180deg, rgba(6, 35, 41, .08) 0%, rgba(6, 35, 41, .42) 100%),
    var(--ps-home-slide-image) center/cover no-repeat;
}

.ps-home-hero__slide--video::before {
  z-index: -1;
  background: linear-gradient(180deg, rgba(6, 35, 41, .02) 0%, rgba(6, 35, 41, .5) 100%);
}

.ps-home-hero__slide--video {
  justify-content: flex-end;
}

.ps-home-hero__slide--career {
  justify-content: flex-end;
  gap: 28px;
  background: var(--ps-home-green);
  color: var(--ps-home-black);
}

.ps-home-hero__slide::after {
  content: "\2197";
  position: absolute;
  top: 18px;
  right: 24px;
  z-index: 2;
  color: currentColor;
  font-size: 42px;
  line-height: 1;
}

.ps-home-hero__slide--video::after,
.ps-home-hero__slide--career::after {
  display: none;
}

.ps-home-hero__feature-video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
}

.ps-home-hero__slide-eyebrow {
  position: relative;
  z-index: 1;
  max-width: calc(100% - 72px);
  color: currentColor;
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
}

.ps-home-hero__slide-body {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 24px;
  max-width: 560px;
}

.ps-home-hero__slide--video .ps-home-hero__slide-body,
.ps-home-hero__slide--career .ps-home-hero__slide-body {
  max-width: 440px;
}

.ps-home-hero__slide-body strong {
  color: currentColor;
  font-family: var(--ps-font-sans);
  font-size: 40px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 52px;
}

.ps-home-hero__slide--career .ps-home-hero__slide-body strong {
  max-width: 430px;
}

.ps-home-hero__slide-body span:not(.ps-home-hero__slide-button) {
  max-width: 440px;
  color: currentColor;
  font-family: var(--ps-font-jakarta);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 26px;
}

.ps-home-hero__slide--career .ps-home-hero__slide-body span:not(.ps-home-hero__slide-button) {
  max-width: 340px;
  color: #666666;
  font-family: var(--ps-font-sans);
}

.ps-home-hero__slide-button {
  width: max-content;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--ps-home-black);
  color: var(--ps-home-soft-white);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.15px;
  line-height: 16px;
}

.ps-home-hero__slide-button::after {
  content: "\203a";
  font-size: 28px;
  line-height: 0;
}

.ps-home-hero__slider-controls {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 3;
  display: flex;
  gap: 22px;
  align-items: center;
}

.ps-home-hero__slider-controls button {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ps-home-soft-white);
  cursor: pointer;
}

.ps-home-hero__slider-controls button::before {
  color: currentColor;
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
}

.ps-home-hero__slider-controls [data-home-hero-prev]::before {
  content: "\2039";
}

.ps-home-hero__slider-controls [data-home-hero-next]::before {
  content: "\203a";
}

.ps-home-card--teaser {
  min-height: 348px;
  background: var(--white);
}

.ps-home-card--teaser::before {
  background: var(--white);
}

.ps-home-card--image-about::before {
  background:
    linear-gradient(180deg, rgba(6, 35, 41, .02), rgba(6, 35, 41, .18)),
    url("https://prosight.sk/wp-content/uploads/2026/02/A.jpg") center/cover no-repeat;
}

.ps-home-card--image-blog::before {
  background:
    linear-gradient(180deg, rgba(6, 35, 41, .02), rgba(6, 35, 41, .02)),
    url("https://prosight.sk/wp-content/uploads/2026/02/D-1.png") top center/cover no-repeat;
}

.ps-home-card--image-blog {
  background: var(--white);
}

.ps-home-card--image-blog::before {
  bottom: 0;
}

.ps-home-card--plain {
  justify-content: space-between;
}

.ps-home-card--plain .ps-home-card__eyebrow {
  display: none;
}

.ps-home-card--plain .ps-home-card__cta {
  text-align: left;
}

.ps-home-card--image-about strong,
.ps-home-card--image-about .ps-home-card__cta {
  display: none;
}

.ps-home-card__eyebrow,
.ps-home-card__cta {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 22px;
  text-align: center;
}

.ps-home-card__eyebrow {
  position: absolute;
  top: 16px;
  left: 16px;
  color: currentColor;
  z-index: 2;
}

.ps-home-card strong {
  max-width: 289px;
  margin-bottom: 0;
  color: currentColor;
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 0;
}

.ps-home-card.ps-home-card--plain strong {
  max-width: calc(100% - 92px);
}

.ps-home-card__cta {
  margin-top: 20px;
  color: currentColor;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 22px;
}

.ps-home-hero__feature,
.ps-home-card--image-about {
  color: var(--ps-home-soft-white);
}

.ps-home-card--image-blog strong {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  min-height: 39%;
  display: flex;
  align-items: center;
  max-width: none;
  padding: 10px 32px;
  border-radius: 24px;
  background: var(--ps-home-green);
  color: var(--ps-home-black);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.3px;
  line-height: 34px;
  text-align: left;
}

.ps-home-card--image-blog .ps-home-card__cta {
  display: none;
}

.ps-home-hero__stats {
  display: block;
  position: relative;
  overflow: hidden;
  margin-top: auto;
  border-radius: 24px;
  background: #e8e8e8;
}

.ps-home-hero__stats-image {
  display: block;
  width: 100%;
  height: auto;
}

.ps-home-trust {
  padding: 0 0 72px;
  background: var(--ps-home-bg);
}

.ps-home-trust__banner {
  position: relative;
  min-height: 432px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 48px;
  border-radius: 48px;
  background: url("https://prosight.sk/wp-content/uploads/2026/02/hodnotenie-frame_4.webp") center/cover no-repeat;
  text-align: center;
  isolation: isolate;
}

.ps-home-trust__banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(6, 35, 41, 0) 0%, rgba(6, 35, 41, .52) 100%);
  opacity: .5;
  pointer-events: none;
}

.ps-home-trust__rating,
.ps-home-trust__banner p,
.ps-home-trust__banner a {
  position: relative;
  z-index: 1;
}

.ps-home-trust__banner p {
  max-width: 760px;
  margin: 24px 0 24px;
  color: var(--ps-home-soft-white);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 28px;
}

.ps-home-trust__rating span {
  display: block;
  color: var(--ps-home-soft-white);
  font-family: var(--ps-font-display);
  font-size: 80px;
  font-weight: 500;
  letter-spacing: -3px;
  line-height: 96px;
  text-align: center;
}

.ps-home-trust__rating div {
  display: flex;
  gap: 8px;
  margin-top: 18px;
  justify-content: center;
}

.ps-home-trust__rating i {
  width: 22px;
  height: 22px;
  display: block;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 56%, 79% 91%, 50% 70%, 21% 91%, 32% 56%, 2% 35%, 39% 35%);
  background: #ffc400;
}

.ps-home-trust__banner a {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--ps-home-soft-white);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.15px;
  line-height: 16px;
  text-decoration: none;
  transform-origin: center;
  transition: color .24s ease, transform .28s ease;
}

.ps-home-trust__banner a:hover,
.ps-home-trust__banner a:focus-visible {
  color: var(--ps-home-soft-white);
  transform: scale(1.045);
}

.ps-home-trust__banner a::after {
  content: "\203a";
  display: inline-flex;
  align-items: center;
  height: 16px;
  margin-left: 0;
  font-size: 28px;
  line-height: 16px;
}

.ps-home-services {
  padding: 78px 0 96px;
}

.ps-home-services__head {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 820px) minmax(0, 610px);
  column-gap: 10px;
  align-items: start;
  margin-bottom: 46px;
}

.ps-home-services__head .ps-home__kicker {
  grid-column: 1 / -1;
}

.ps-home-services__head h2 {
  grid-column: 1;
  margin-bottom: 0;
}

.ps-home-services__head p:last-child {
  grid-column: 2;
  justify-self: end;
  max-width: 610px;
  margin-top: 3px;
  text-align: right;
}

.ps-home-services__accordion {
  padding: 24px 32px;
  border-radius: 48px;
  background: #e8e8e8;
}

.ps-home-service {
  overflow: hidden;
  background: transparent !important;
  border: 0;
  border-radius: 0;
}

.ps-home-service.is-open {
  background: transparent !important;
  border-bottom: 1px solid #d5d8dc;
  padding-bottom: 24px;
}

.ps-home-service.is-closing {
  padding-bottom: 0;
}

.ps-home-service summary {
  min-height: 101px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  padding: 32px 0;
  border-bottom: 1px solid #d5d8dc;
  list-style: none;
  cursor: pointer;
  text-align: left;
  transition: background-color .3s ease;
}

.ps-home-service.is-open summary {
  border-bottom-color: transparent;
}

.ps-home-service summary::-webkit-details-marker {
  display: none;
}

.ps-home-service summary::after {
  content: "";
  flex: 0 0 18px;
  width: 18px;
  height: 10px;
  margin-left: 24px;
  background: center/contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='10' viewBox='0 0 18 10' fill='none'%3E%3Cpath d='M17.6143 2.125L9.9 9.625C9.64286 9.875 9.38571 10 9 10C8.61429 10 8.35714 9.875 8.1 9.625L0.385714 2.125C-0.128571 1.625 -0.128571 0.875 0.385714 0.375C0.9 -0.125 1.67143 -0.125 2.18571 0.375L9 7L15.8143 0.375C16.3286 -0.125 17.1 -0.125 17.6143 0.375C18.1286 0.875 18.1286 1.625 17.6143 2.125Z' fill='%23062329'/%3E%3C/svg%3E");
}

.ps-home-service.is-open summary::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='10' viewBox='0 0 18 10' fill='none'%3E%3Cpath d='M0.385715 7.875L8.1 0.375C8.35714 0.125 8.61429 0 9 0C9.38571 0 9.64286 0.125 9.9 0.375L17.6143 7.875C18.1286 8.375 18.1286 9.125 17.6143 9.625C17.1 10.125 16.3286 10.125 15.8143 9.625L9 3L2.18572 9.625C1.67143 10.125 0.900001 10.125 0.385715 9.625C-0.128571 9.125 -0.128571 8.375 0.385715 7.875Z' fill='%23062329'/%3E%3C/svg%3E");
}

.ps-home-service.is-closing summary::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='10' viewBox='0 0 18 10' fill='none'%3E%3Cpath d='M17.6143 2.125L9.9 9.625C9.64286 9.875 9.38571 10 9 10C8.61429 10 8.35714 9.875 8.1 9.625L0.385714 2.125C-0.128571 1.625 -0.128571 0.875 0.385714 0.375C0.9 -0.125 1.67143 -0.125 2.18571 0.375L9 7L15.8143 0.375C16.3286 -0.125 17.1 -0.125 17.6143 0.375C18.1286 0.875 18.1286 1.625 17.6143 2.125Z' fill='%23062329'/%3E%3C/svg%3E");
}

.ps-home-service summary strong {
  position: relative;
  display: block;
  color: var(--ps-home-black);
  font-family: var(--ps-font-sans);
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 36px;
  transition: padding-left .55s cubic-bezier(.2, .8, .2, 1);
}

.ps-home-service summary strong::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 0;
  width: 22px;
  height: 22px;
  background: url("https://prosight.sk/wp-content/uploads/2026/01/logo_2026.png") center/contain no-repeat;
  opacity: 0;
  transform: translateY(-11px);
  transition: opacity .55s cubic-bezier(.2, .8, .2, 1);
}

.ps-home-service summary:hover {
  background-color: #e8e8e8;
}

.ps-home-service summary:hover strong,
.ps-home-service.is-open summary strong {
  padding-left: 34px;
}

.ps-home-service.is-closing summary strong {
  padding-left: 0;
}

.ps-home-service summary:hover strong::before,
.ps-home-service.is-open summary strong::before {
  opacity: .9;
}

.ps-home-service.is-closing summary strong::before {
  opacity: 0;
}

.ps-home-service__body {
  box-sizing: border-box;
  display: grid;
  grid-template-columns: minmax(0, 825px) 420px;
  gap: 75px;
  align-items: center;
  padding: 0 48px 48px 32px;
  overflow: hidden;
  border-bottom: 0;
  border-radius: 0;
  background: transparent !important;
  transform-origin: top;
  will-change: max-height, opacity, transform;
}

.ps-home-service--detail .ps-home-service__body,
.ps-home-service--detail-featured .ps-home-service__body {
  min-height: 0;
  padding: 32px 32px;
  border-radius: 48px;
  background: var(--white) !important;
}

.ps-home-service__image-deck {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 122px;
  padding: 0 51px 33px;
}

.ps-home-service--image-cards .ps-home-service__body {
  display: block;
  padding: 0;
}

.ps-home-service__image-card {
  width: 576px;
  height: 420px;
  display: block;
  overflow: hidden;
  border-radius: 24px;
}

.ps-home-service__image-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.ps-home-service__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  min-height: 420px;
  padding: 0;
  background: transparent;
}

.ps-home-service__copy h3 {
  max-width: 825px;
  margin-bottom: 40px;
  color: var(--ps-home-black);
  font-family: var(--ps-font-sans);
  font-size: 64px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 70px;
  text-align: left;
}

.ps-home-service__copy h3 span {
  display: block;
}

.ps-home-service__copy p {
  max-width: 825px;
  margin-bottom: 40px;
  color: #666666;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 28px;
  text-align: left;
}

.ps-home-service__badge {
  width: max-content;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--ps-home-black);
  color: var(--ps-home-soft-white);
  font-size: 16px;
  font-weight: 600;
  line-height: 16px;
}

.ps-home-service__button {
  width: max-content;
  min-height: 48px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 16px 32px;
  border-radius: 999px;
  background: var(--ps-home-green);
  color: var(--ps-home-black);
  font-size: 16px;
  font-weight: 600;
  line-height: 16px;
  text-decoration: none;
  transition: color .3s ease;
}

.ps-home-service__button:hover,
.ps-home-service__button:focus-visible {
  color: inherit;
  text-decoration: none;
}

.ps-home-service__button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: rgba(6, 35, 41, .08);
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s ease;
}

.ps-home-service__button:hover::before,
.ps-home-service__button:focus-visible::before {
  opacity: 1;
}

.ps-home-service__button::after {
  content: "\203a";
  position: relative;
  z-index: 1;
  margin-left: 16px;
  font-size: 28px;
  font-weight: 400;
  line-height: 0;
  transform: rotate(90deg);
}

.ps-home-service--detail-featured .ps-home-service__copy h3 {
  font-size: 88px;
  line-height: 98px;
}

.ps-home-service__visual {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 16px;
  border-radius: 32px;
  background: #e8e8e8;
}

.ps-home-service__visual-title {
  max-width: 396px;
  margin: 0 0 10px;
  color: var(--ps-home-black);
  font-family: var(--ps-font-sans);
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 0;
  text-align: left;
}

.ps-home .ps-home-service__visual-title {
  color: var(--ps-home-black);
  font-family: var(--ps-font-sans);
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
}

.ps-home-service__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.ps-home-service__visual-card {
  width: 100%;
  min-height: 154px;
  overflow: hidden;
  border-radius: 24px;
  background: var(--white);
}

.ps-home-service__visual-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.ps-home-service__visual-card:not(.ps-home-service__visual-card--caption) {
  min-height: 0;
  background: transparent;
}

.ps-home-service--detail-featured .ps-home-service__visual-card {
  min-height: 0;
  position: relative;
  padding: 0;
  background: var(--white);
}

.ps-home-service__visual-card--caption {
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding: 0;
  background: var(--white);
}

.ps-home-service__visual-card--caption img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.ps-home-service__visual-card p {
  max-width: 296px;
  margin: 0;
  color: #666666;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  text-align: left;
}

.ps-home-service--detail-featured .ps-home-service__visual-card--caption p {
  max-width: none;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 28px 18px 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .92) 45%, #ffffff 100%);
}

.ps-home-service__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.ps-home-service__stats div {
  min-height: 158px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-radius: 24px;
  background: var(--white);
  text-align: center;
}

.ps-home-service__stats strong {
  display: block;
  color: var(--ps-home-black);
  font-size: 28px;
  font-weight: 500;
  line-height: 32px;
}

.ps-home-service__stats span {
  display: block;
  max-width: 150px;
  margin-top: 8px;
  color: #666666;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
}

.ps-home-service__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 126px;
  align-content: flex-start;
  margin-top: 0;
  padding: 16px;
  border-radius: 24px;
  background: var(--ps-home-service-chip-bg) center/cover no-repeat;
}

.ps-home-chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  min-height: 26px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ps-home-black);
  font-size: 14px;
  font-weight: 500;
  line-height: 14px;
  text-decoration: none;
}

a.ps-home-chip:hover,
a.ps-home-chip:focus-visible {
  color: var(--ps-home-black);
  text-decoration: none;
}

a.ps-home-chip--dark:hover,
a.ps-home-chip--dark:focus-visible,
a.ps-home-chip--dark-soft:hover,
a.ps-home-chip--dark-soft:focus-visible {
  color: var(--ps-home-soft-white);
}

a.ps-home-chip::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(6, 35, 41, .08);
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s ease;
}

a.ps-home-chip:hover::before,
a.ps-home-chip:focus-visible::before {
  opacity: 1;
}

a.ps-home-chip--dark::before,
a.ps-home-chip--dark-soft::before {
  background: rgba(255, 255, 255, .12);
}

.ps-home-chip--green {
  background: var(--ps-home-green);
}

.ps-home-chip--dark {
  background: var(--ps-home-black);
  color: var(--ps-home-soft-white);
}

.ps-home-chip--dark-soft {
  background: #253e43;
  color: var(--ps-home-soft-white);
}

.ps-home-career {
  padding: 40px 0 128px;
  background: var(--ps-home-bg);
}

.ps-home-final {
  padding: 92px 0;
  background: var(--ps-home-black);
}

.ps-home-career__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 72px;
}

.ps-home-final h2 {
  color: var(--ps-home-soft-white);
}

.ps-home-career__copy {
  width: 100%;
  max-width: 820px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.ps-home-career__copy .ps-home__kicker {
  margin-bottom: 16px;
  color: #666666;
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
}

.ps-home-career__copy h2 {
  margin-bottom: 24px;
  color: var(--ps-home-black);
  font-size: 64px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 64px;
  text-align: center;
}

.ps-home-career__copy p:not(.ps-home__kicker) {
  max-width: 658px;
  margin-bottom: 32px;
  color: #666666;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 26px;
  text-align: center;
}

.ps-home-career__actions {
  justify-content: center;
  gap: 8px;
}

.ps-home-career__carousel {
  width: min(100%, 922px);
  overflow: hidden;
  padding: 18px 0;
  cursor: grab;
  touch-action: pan-y;
}

.ps-home-career__carousel.is-dragging {
  cursor: grabbing;
}

.ps-home-career__track {
  display: flex;
  gap: 16px;
  align-items: stretch;
  will-change: transform;
  transition: transform 700ms cubic-bezier(.16, 1, .3, 1);
}

.ps-home-career__carousel.is-dragging .ps-home-career__track {
  transition: none;
}

.ps-home-career__card {
  flex: 0 0 296.562px;
  width: 296.562px;
  height: 520px;
  position: relative;
  border-radius: 32px;
  background: transparent;
  overflow: hidden;
  transform: scale(.96);
  transform-origin: center;
  transition: transform 520ms cubic-bezier(.16, 1, .3, 1);
  backface-visibility: hidden;
}

.ps-home-career__card img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: inherit;
  object-fit: contain;
  pointer-events: none;
  backface-visibility: hidden;
}

.ps-home-career__card.is-active {
  z-index: 3;
  transform: scale(1.03);
}

.ps-home-career__card.is-neighbour {
  z-index: 1;
  transform: scale(.96);
}

.ps-home-career__dots {
  display: none;
}

.ps-home-video {
  padding: 0;
  background: #f5f5f5;
}

.ps-home-video__inner {
  position: relative;
  width: 100%;
  max-width: none;
  height: min(760px, 53.333vw);
  max-height: 760px;
  min-height: 560px;
  display: block;
}

.ps-home-video__media,
.ps-home-video__quote {
  margin: 0;
}

.ps-home-video__media {
  position: relative;
  height: 100%;
  max-height: 760px;
  overflow: hidden;
  border-radius: 0;
  background: #d8d8d2;
}

.ps-home-video__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(6, 35, 41, .12), rgba(6, 35, 41, .04) 45%, rgba(6, 35, 41, .24)),
    rgba(6, 35, 41, .12);
  pointer-events: none;
}

.ps-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: url("https://prosight.sk/wp-content/uploads/2026/02/Snimka-obrazovky-2026-02-24-o-22.14.09-scaled.webp") center/cover no-repeat;
  opacity: 1;
  transition: opacity .35s ease;
  pointer-events: none;
}

.ps-home-video__media.is-playing .ps-video-overlay {
  opacity: 0;
}

.ps-home-video__media video {
  width: 100%;
  height: 100%;
  max-height: 760px;
  display: block;
  object-fit: cover;
  opacity: .72;
  filter: saturate(.72) contrast(.92) brightness(1.08);
}

.ps-home-video__play {
  position: absolute;
  z-index: 3;
  top: 424px;
  left: clamp(32px, 16.8vw, 430px);
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #e8e8e8;
  font-family: var(--ps-font-jakarta);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 18px;
  cursor: pointer;
  text-shadow: 0 1px 16px rgba(6, 35, 41, .32);
}

.ps-home-video__play::before {
  content: "";
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background:
    center/18px 18px no-repeat url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.25 4.25L13.25 9L6.25 13.75V4.25Z' stroke='%23FFFFFF' stroke-width='2.5' stroke-linejoin='round'/%3E%3C/svg%3E"),
    rgba(255, 255, 255, .22);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.ps-home-video__quote {
  position: absolute;
  z-index: 3;
  top: 144px;
  left: clamp(32px, 16.8vw, 430px);
  width: min(540px, calc(100% - 64px));
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0;
  border-radius: 0;
  background: transparent;
  transition: opacity .28s ease, visibility .28s ease;
}

.ps-home-video.is-playing .ps-home-video__quote {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.ps-home-video.is-playing .ps-home-video__play {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.ps-home-video__quote blockquote {
  position: relative;
  margin: 0;
  padding: 0;
  background: transparent;
  color: #ffffff;
  font-family: var(--ps-font-sans);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 28px;
  text-align: left;
  text-shadow: 0 1px 18px rgba(6, 35, 41, .3);
}

.ps-home-video__quote blockquote::before {
  content: "\2018\2018";
  display: block;
  margin-bottom: 18px;
  color: #ffffff;
  font-family: var(--ps-font-sans);
  font-size: 68px;
  font-weight: 600;
  line-height: 40px;
}

.ps-home-video__quote figcaption {
  margin-top: 18px;
}

.ps-home-video__quote strong,
.ps-home-video__quote span {
  display: block;
  color: #ffffff;
  font-family: var(--ps-font-jakarta);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 12px;
  text-align: left;
}

.ps-home-video__quote span {
  margin-top: 4px;
  color: rgba(255, 255, 255, .76);
}

.ps-home-results {
  padding: 200px 0 96px;
  background: #f5f5f5;
}

.ps-home-results__inner {
  position: relative;
  min-height: 768px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  border-radius: 48px;
  background: #f5f5f5;
}

.ps-home-results__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: url("https://prosight.sk/wp-content/uploads/2026/02/karty_background_2.png") center/cover no-repeat;
  opacity: .64;
  pointer-events: none;
}

.ps-home-results__inner h2 {
  position: relative;
  z-index: 2;
  margin: 80px 0 40px;
  color: var(--ps-home-black);
  font-family: var(--ps-font-sans);
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -0.15px;
  line-height: 38px;
  text-align: center;
}

.ps-home-results__deck {
  position: relative;
  z-index: 2;
  width: 296px;
  height: 425px;
  padding: 0;
  isolation: isolate;
  overflow: visible;
  touch-action: manipulation;
}

.ps-home-results__card {
  position: absolute;
  inset: 0;
  width: 296px;
  height: 425px;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  border-radius: 26px;
  background: var(--ps-home-results-card-bg, transparent) center/cover no-repeat;
  box-shadow: 0 30px 70px rgba(6, 35, 41, .16);
  cursor: pointer;
  transform-origin: center;
  transition: opacity .45s ease, transform .45s ease, box-shadow .35s ease;
  will-change: opacity, transform;
}

.ps-home-results__card:focus-visible {
  outline: 2px solid var(--ps-home-green);
  outline-offset: 6px;
}

.ps-home-results__card--image {
  font-size: 0;
}

.ps-home-results__card--cta {
  color: #f5f5f5;
  text-align: center;
  text-decoration: none;
  background: url("https://prosight.sk/wp-content/uploads/2026/02/posledna_karta.png") center/cover no-repeat;
  pointer-events: none;
}

.ps-home-results__card--cta:hover,
.ps-home-results__card--cta:focus-visible {
  text-decoration: none;
  box-shadow: 0 36px 90px rgba(6, 35, 41, .2);
}

.ps-home-results__card--cta span {
  margin: 0 0 18px;
  color: var(--ps-home-green);
  font-family: var(--ps-font-display);
  font-size: 80px;
  font-weight: 500;
  letter-spacing: -3px;
  line-height: 68px;
}

.ps-home-results__card--cta h3 {
  max-width: 237px;
  margin: 0 0 16px;
  color: #f5f5f5;
  font-family: var(--ps-font-sans);
  font-size: 24px;
  font-weight: 500;
  line-height: 28px;
  text-align: center;
}

.ps-home-results__card--cta p {
  margin: 0 0 18px;
  color: #cacaca;
  font-family: var(--ps-font-sans);
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
}

.ps-home-results__card--cta strong {
  min-width: 149px;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--ps-home-black);
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 16px;
}

.ps-home-results__deck.is-ready .ps-home-results__card {
  opacity: 0;
  pointer-events: none;
  transform: translate(0, 0) rotate(0deg) scale(.92);
}

.ps-home-results__deck.is-ready .ps-home-results__card.is-active {
  z-index: 4;
  opacity: 1;
  pointer-events: auto;
  transform: translate(0, 0) rotate(0deg) scale(1);
}

.ps-home-results__deck.is-ready:not(.has-entered) .ps-home-results__card.is-active {
  opacity: 0;
  pointer-events: none;
  transform: translate(-420px, 12px) rotate(-10deg) scale(.98);
}

.ps-home-results__deck.is-ready.has-entered .ps-home-results__card.is-active {
  transition-duration: .85s;
  transition-timing-function: cubic-bezier(.16, 1, .3, 1);
}

.ps-home-results__deck.is-ready .ps-home-results__card.is-next {
  z-index: 3;
  opacity: 1;
  pointer-events: auto;
  transform: translate(-8px, -4px) rotate(-2deg) scale(.985);
}

.ps-home-results__deck.is-ready .ps-home-results__card.is-next2 {
  z-index: 2;
  opacity: 1;
  pointer-events: auto;
  transform: translate(12px, -12px) rotate(3.2deg) scale(.97);
}

.ps-home-results__deck.is-ready .ps-home-results__card.is-next3,
.ps-home-results__deck.is-ready .ps-home-results__card.is-cta-under {
  z-index: 1;
  opacity: 1;
  pointer-events: none;
  transform: translate(-14px, -18px) rotate(-4.6deg) scale(.955);
}

.ps-home-results__deck.is-ready .ps-home-results__card.is-leaving {
  z-index: 5;
  opacity: 0;
  pointer-events: none;
  transform: translate(-640px, 20px) rotate(-16deg) scale(.98);
}

.ps-home-results__deck.is-ready .ps-home-results__card.is-dismissed {
  display: none;
}

.ps-home-results__deck.is-ready .ps-home-results__card--cta.is-cta-active {
  z-index: 4;
  opacity: 1;
  pointer-events: auto;
  transform: translate(0, 0) rotate(0deg) scale(1);
}

.ps-home-results__deck.is-ready .ps-home-results__card.is-active:hover,
.ps-home-results__deck.is-ready .ps-home-results__card.is-active:focus-visible {
  box-shadow: 0 36px 90px rgba(6, 35, 41, .2);
  transform: translate(0, 0) rotate(0deg) scale(1.018);
}

.ps-home-final {
  padding: 160px 0;
  background: #f5f5f5;
}

.ps-home-final__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.ps-home-final h2 {
  max-width: 980px;
  margin-bottom: 36px;
  color: var(--ps-home-black);
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -0.4px;
  line-height: 60px;
}

.ps-home-final__actions {
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.ps-home-final__mail {
  color: #666666;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.2px;
  line-height: 16px;
  text-decoration: none;
}

.ps-home-final__mail[href] {
  color: #666666;
}

.ps-home-final__mail strong {
  color: #000000;
  font-weight: 500;
}

.ps-home-final__mail:hover,
.ps-home-final__mail:focus-visible {
  color: #000000;
}

@media all and (max-width: 1199px) {
  .ps-home__shell {
    width: min(100% - 36px, 1120px);
  }

  .ps-home-hero__inner,
  .ps-home-career__inner,
  .ps-home-video__inner,
  .ps-home-results__inner {
    grid-template-columns: 1fr;
  }

  .ps-home-hero__copy {
    min-height: auto;
    padding: 38px 0 0;
  }

  .ps-home-hero__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ps-home-services__head {
    display: block;
    max-width: 820px;
  }

  .ps-home-services__head h2 {
    margin-bottom: 22px;
  }

  .ps-home-services__head p:last-child {
    max-width: 640px;
    margin-top: 0;
    text-align: left;
  }

  .ps-home-service__body {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .ps-home-service--detail .ps-home-service__body,
  .ps-home-service--detail-featured .ps-home-service__body {
    padding: 24px;
  }

  .ps-home-service__copy {
    min-height: auto;
  }

  .ps-home-service__copy h3 {
    max-width: none;
    font-size: 54px;
    line-height: 58px;
  }

  .ps-home-service--detail-featured .ps-home-service__copy h3 {
    font-size: 64px;
    line-height: 68px;
  }

  .ps-home-service__copy p {
    max-width: none;
  }

  .ps-home-service__image-deck {
    gap: 24px;
    align-items: center;
    padding: 0 0 24px;
  }

  .ps-home-service__image-card {
    flex: 1 1 0;
    width: auto;
    height: auto;
    min-width: 0;
    overflow: visible;
    border-radius: 24px;
  }

  .ps-home-service__image-card img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    object-fit: contain;
  }

  .ps-home-hero__feature {
    min-height: 420px;
  }

  .ps-home-results__deck {
    min-height: 425px;
  }
}

@media all and (max-width: 767px) {
  .ps-home__shell {
    width: min(100% - 28px, 560px);
  }

  .ps-home-service__image-deck {
    gap: 18px;
  }

  .ps-home h1 {
    max-width: 344px;
    margin-bottom: 22px;
    font-size: 40px;
    line-height: 42px;
    text-align: left;
  }

  .ps-home h2 {
    font-size: clamp(38px, 14vw, 56px);
  }

  .ps-home p {
    font-size: 16px;
  }

  .ps-home-hero {
    padding-top: 26px;
    padding-bottom: 80px;
  }

  .ps-home-hero__copy {
    padding-top: 0;
  }

  .ps-home .ps-home-hero__lead {
    max-width: 344px;
    margin-bottom: 12px;
    font-size: 20px;
    line-height: 26px;
    text-align: left;
  }

  .ps-home-hero__stats {
    display: none;
  }

  .ps-home-hero__grid,
  .ps-home-hero__feature,
  .ps-home-card--teaser {
    min-height: 166px;
  }

  .ps-home-hero__feature {
    min-height: 342px;
    margin-bottom: 0;
    border-radius: 20px;
  }

  .ps-home-hero__slide {
    padding: 24px;
  }

  .ps-home-hero__slide-eyebrow {
    max-width: calc(100% - 52px);
    font-size: 18px;
    line-height: 22px;
  }

  .ps-home-hero__grid {
    gap: 14px;
    margin-top: 0;
  }

  .ps-home-hero__slide-body {
    max-width: 280px;
    gap: 16px;
  }

  .ps-home-hero__slide-body strong {
    font-size: 32px;
    line-height: 38px;
  }

  .ps-home-hero__slide-body span:not(.ps-home-hero__slide-button) {
    max-width: 280px;
    font-size: 18px;
    line-height: 26px;
  }

  .ps-home-hero__slide--image .ps-home-hero__slide-body strong {
    font-size: 40px;
    line-height: 44px;
  }

  .ps-home-hero__slider-controls {
    display: none;
  }

  .ps-home-card {
    padding: 16px;
    border-radius: 20px;
  }

  .ps-home-card--1,
  .ps-home-card--2 {
    min-height: 170px;
    height: 170px;
  }

  .ps-home-card--3,
  .ps-home-card--4 {
    min-height: 224px;
    height: 224px;
  }

  .ps-home-card::after {
    top: 12px;
    right: 14px;
    font-size: 30px;
  }

  .ps-home-card--3 {
    order: 4;
  }

  .ps-home-card--4 {
    order: 3;
  }

  .ps-home-card strong {
    max-width: calc(100% - 36px);
    font-size: 16px;
    letter-spacing: -0.4px;
    line-height: 18px;
  }

  .ps-home-card.ps-home-card--plain strong {
    max-width: calc(100% - 36px);
  }

  .ps-home-card__cta {
    margin-top: 14px;
    font-size: 24px;
    line-height: 28px;
  }

  .ps-home-card--image-blog strong {
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: none;
    box-sizing: border-box;
    min-height: 40%;
    padding: 12px 18px;
    border-radius: 20px;
    color: rgb(6, 35, 41);
    font-family: var(--ps-font-sans);
    font-size: 16px;
    font-weight: 500;
    line-height: 18px;
  }

  .ps-home-card--image-blog .ps-home-card__eyebrow,
  .ps-home-card--image-about .ps-home-card__eyebrow {
    font-size: 18px;
    line-height: 22px;
  }

  .ps-home-trust,
  .ps-home-services,
  .ps-home-career,
  .ps-home-results,
  .ps-home-final {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .ps-home-trust {
    padding-top: 0;
  }

  .ps-home-video {
    padding: 0;
  }

  .ps-home-trust__banner,
  .ps-home-video__media {
    min-height: auto;
    border-radius: 28px;
  }

  .ps-home-video__inner,
  .ps-home-video__media,
  .ps-home-video__media video {
    height: auto;
    max-height: none;
    min-height: 0;
  }

  .ps-home-video__inner {
    height: min(300px, 66vw);
    min-height: 224px;
  }

  .ps-home-video__media {
    height: 100%;
    border-radius: 0;
  }

  .ps-home-video__media::after {
    background:
      linear-gradient(90deg, rgba(6, 35, 41, .38), rgba(6, 35, 41, .24) 55%, rgba(6, 35, 41, .34)),
      rgba(6, 35, 41, .18);
  }

  .ps-home-video__media video {
    height: 100%;
    min-height: 0;
    object-position: center center;
  }

  .ps-home-video__quote {
    top: 38px;
    left: 28px;
    width: calc(100% - 56px);
    min-height: 0;
    border-radius: 0;
  }

  .ps-home-video__quote blockquote {
    position: static !important;
    align-self: flex-start;
    width: min(260px, calc(100vw - 96px));
    max-width: 260px;
    left: auto !important;
    right: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 14px;
    line-height: 16px;
    text-align: left !important;
    text-shadow: 0 1px 12px rgba(6, 35, 41, .72);
  }

  .ps-home-video__quote blockquote::before {
    margin-bottom: 8px;
    font-size: 40px;
    line-height: 24px;
  }

  .ps-home-video__quote figcaption {
    margin-top: 16px;
  }

  .ps-home-video__quote strong,
  .ps-home-video__quote span {
    font-family: var(--ps-font-sans);
    font-size: 14px;
    line-height: 16px;
    text-shadow: 0 1px 12px rgba(6, 35, 41, .72);
  }

  .ps-home-video__play {
    top: auto;
    bottom: 30px;
    right: 28px;
    left: auto;
    font-size: 14px;
    line-height: 16px;
  }

  .ps-home-video__play::before {
    width: 54px;
    height: 54px;
  }

  .ps-home-trust__banner {
    min-height: 270px;
    padding: 24px 28px;
    background-position: center center;
  }

  .ps-home-trust__rating span {
    font-size: 48px;
    letter-spacing: -1.5px;
    line-height: 48px;
  }

  .ps-home-trust__rating div {
    gap: 7px;
    margin-top: 18px;
  }

  .ps-home-trust__rating i {
    width: 20px;
    height: 20px;
  }

  .ps-home-trust__banner p {
    max-width: 300px;
    margin: 18px 0 18px;
    font-size: 18px;
    line-height: 22px;
  }

  .ps-home-trust__banner a {
    gap: 12px;
    font-size: 12px;
    line-height: 16px;
  }

  .ps-home-trust__banner a::after {
    margin-left: 0;
    font-size: 22px;
  }

  .ps-home-services__head {
    margin-bottom: 24px;
  }

  .ps-home-services__head .ps-home__kicker {
    margin-bottom: 14px;
    color: #666666;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
  }

  .ps-home-services__head h2 {
    margin-bottom: 24px;
    font-size: 32px;
    font-weight: 500;
    line-height: 40px;
  }

  .ps-home-services__head p:last-child {
    max-width: 100%;
    color: #666666;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
  }

  .ps-home-services__accordion {
    padding: 14px 24px;
    border-radius: 28px;
  }

  .ps-home-service summary {
    min-height: 62px;
    padding: 18px 0;
  }

  .ps-home-service summary::after {
    flex-basis: 14px;
    width: 14px;
    height: 8px;
    margin-left: 16px;
  }

  .ps-home-service summary strong {
    font-size: 20px;
    line-height: 24px;
  }

  .ps-home-service summary:hover strong,
  .ps-home-service.is-open summary strong,
  .ps-home-service.is-closing summary strong {
    padding-left: 0;
  }

  .ps-home-service summary strong::before,
  .ps-home-service summary:hover strong::before,
  .ps-home-service.is-open summary strong::before {
    display: none;
    content: none;
  }

  .ps-home-service__body {
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: auto;
    padding: 0 0 24px;
  }

  .ps-home-service--detail .ps-home-service__body,
  .ps-home-service--detail-featured .ps-home-service__body {
    min-height: auto;
  }

  .ps-home-service--detail .ps-home-service__body,
  .ps-home-service--detail-featured .ps-home-service__body {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 12px 0 24px;
    border-radius: 0;
    background: transparent !important;
  }

  .ps-home-service__image-deck {
    flex-direction: column;
    gap: 18px;
    padding: 0 0 18px;
  }

  .ps-home-service__image-card {
    width: 100%;
    height: auto;
    min-height: 240px;
    border-radius: 24px;
  }

  .ps-home-service__image-card img {
    height: auto;
    border-radius: 24px;
  }

  .ps-home-service__copy {
    display: contents;
    min-height: auto;
  }

  .ps-home-service__badge {
    display: none;
  }

  .ps-home-service__copy h3 {
    order: 1;
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 600;
    line-height: 24px;
  }

  .ps-home-service--detail-featured .ps-home-service__copy h3 {
    font-size: 22px;
    line-height: 24px;
  }

  .ps-home-service__copy h3 span {
    display: inline;
  }

  .ps-home-service__copy p {
    order: 2;
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
  }

  .ps-home-service__button {
    order: 4;
    width: 100%;
    min-height: 38px;
    margin-top: 0;
    padding: 10px 20px;
    background: var(--ps-home-black);
    color: #ffffff;
    font-size: 16px;
    line-height: 16px;
  }

  .ps-home-service__button:hover,
  .ps-home-service__button:focus-visible {
    color: #ffffff;
  }

  .ps-home-service__button::before {
    background: rgba(255, 255, 255, .12);
  }

  .ps-home-service__button::after {
    display: none;
    content: none;
  }

  .ps-home-service__visual {
    order: 3;
    min-height: auto;
    width: 100%;
    padding: 0;
    border-radius: 0;
    background: transparent;
  }

  .ps-home .ps-home-service__visual-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 16px;
  }

  .ps-home-service__visual-card img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    object-fit: contain;
  }

  .ps-home-service__visual-card {
    min-height: 0;
    overflow: visible;
    border-radius: 24px;
    background: transparent;
  }

  .ps-home-service--detail-featured .ps-home-service__visual-card {
    overflow: hidden;
    background: var(--white);
  }

  .ps-home-career__inner {
    gap: 32px;
  }

  .ps-home-career__copy {
    align-items: flex-start;
    text-align: left;
  }

  .ps-home-career__copy .ps-home__kicker,
  .ps-home-career__copy h2,
  .ps-home-career__copy p:not(.ps-home__kicker) {
    text-align: left;
  }

  .ps-home-career__copy .ps-home__kicker {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 20px;
  }

  .ps-home-career__copy h2 {
    margin-bottom: 16px;
    font-size: 32px;
    line-height: 40px;
  }

  .ps-home-career__copy p:not(.ps-home__kicker) {
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 24px;
  }

  .ps-home-career__actions {
    width: 100%;
    justify-content: flex-start;
  }

  .ps-home-career__carousel {
    width: calc(100% + 28px);
    margin-right: -14px;
    margin-left: -14px;
    overflow: hidden;
    padding: 12px 0 52px;
  }

  .ps-home-career__track {
    gap: 16px;
  }

  .ps-home-career__card {
    flex-basis: min(236px, calc(100vw - 132px));
    width: min(236px, calc(100vw - 132px));
    height: auto;
    aspect-ratio: 292 / 520;
    transform: scale(1);
  }

  .ps-home-career__card.is-active {
    transform: scale(1);
  }

  .ps-home-career__card.is-neighbour {
    transform: scale(.95);
  }

  .ps-home-career__dots {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 44px;
  }

  .ps-home-career__dot {
    width: 10px;
    height: 10px;
    display: block;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #d9d9d9;
    cursor: pointer;
    transition: background-color .25s ease, transform .25s ease;
  }

  .ps-home-career__dot.is-active {
    background: #666666;
    transform: scale(1.08);
  }

  .ps-home-results__deck {
    width: min(296px, calc(100vw - 64px));
    height: min(425px, calc((100vw - 64px) * 1.436));
    min-height: 0;
    display: block;
    gap: 0;
  }

  .ps-home-results__card {
    position: absolute;
    width: 100%;
    height: 100%;
    min-height: 0;
  }

  .ps-home-results__deck.is-ready .ps-home-results__card,
  .ps-home-results__deck.is-ready .ps-home-results__card.is-active,
  .ps-home-results__deck.is-ready .ps-home-results__card.is-next,
  .ps-home-results__deck.is-ready .ps-home-results__card.is-next2,
  .ps-home-results__deck.is-ready .ps-home-results__card.is-next3,
  .ps-home-results__deck.is-ready .ps-home-results__card.is-cta-under,
  .ps-home-results__deck.is-ready .ps-home-results__card.is-cta-active {
    position: absolute;
  }

  .ps-home-results__deck.is-ready .ps-home-results__card.is-active:hover,
  .ps-home-results__deck.is-ready .ps-home-results__card.is-active:focus-visible {
    transform: translate(0, 0) rotate(0deg) scale(1.018);
  }

  .ps-home-results {
    padding: 80px 0 0;
  }

  .ps-home-results__inner {
    min-height: 630px;
    border-radius: 40px;
  }

  .ps-home-results__inner h2 {
    margin: 48px 0 40px;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 28px;
  }

  .ps-home-results__card--cta span {
    font-size: 64px;
    letter-spacing: -2.4px;
    line-height: 54px;
  }

  .ps-home-results__card--cta h3 {
    font-size: 24px;
    line-height: 28px;
  }

  .ps-home-results__card--cta p {
    font-size: 14px;
    line-height: 18px;
  }

  .ps-home-results__card--cta strong {
    min-height: 40px;
    padding: 0 20px;
    font-size: 14px;
    line-height: 14px;
  }

  .ps-home-final {
    min-height: 440px;
    padding: 0;
  }

  .ps-home-final__inner {
    min-height: 440px;
    justify-content: center;
  }

  .ps-home-final h2 {
    width: 85%;
    max-width: 320px;
    margin-bottom: 24px;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 32px;
  }

  .ps-home-final__actions {
    gap: 8px;
  }

  .ps-home-final__mail {
    font-size: 14px;
    line-height: 14px;
  }
}
