:root {
  --psw-primary: #52833E;
  --psw-accent: #F0C011;
  --psw-red: #C32727;
  --psw-dark: #171A18;
  --psw-dark-2: #263F2B;
  --psw-light: #F0F5ED;
  --psw-muted: #68706A;
  --psw-border: #E2E8DF;
  --psw-white: #FFFFFF;
  --psw-radius: 8px;
  --psw-radius-sm: 4px;
  --psw-shadow: 0 18px 60px rgba(23, 26, 24, .10);
  --psw-container: 1440px;
  --psw-container-gutter: clamp(18px, 4vw, 32px);
  --psw-section-padding: clamp(64px, 8vw, 118px);
  --psw-grid-gap: clamp(16px, 2vw, 24px);
  --psw-heading-size: clamp(32px, 4vw, 56px);
  --psw-body-size: clamp(16px, 1.25vw, 18px);
  --psw-ease: cubic-bezier(.2, .7, .2, 1);
}

.psw-section {
  padding-block: var(--psw-section-padding);
}

.psw-container {
  width: min(var(--psw-container), calc(100% - (var(--psw-container-gutter) * 2)));
  margin-inline: auto;
}

.psw-grid {
  display: grid;
  gap: var(--psw-grid-gap);
}

.psw-heading {
  max-width: 860px;
}

.psw-heading__title,
.psw-title {
  margin: 12px 0 0;
  color: var(--psw-dark);
  font-size: var(--psw-heading-size);
  line-height: 1.05;
  letter-spacing: 0;
}

.psw-heading__text,
.psw-subtitle {
  max-width: 760px;
  margin-top: 20px;
  color: var(--psw-muted);
  font-size: var(--psw-body-size);
  line-height: 1.7;
}

.psw-eyebrow,
.psw-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--psw-primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.psw-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

.psw-eyebrow--light {
  color: var(--psw-white);
}

.psw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--psw-radius);
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform .3s var(--psw-ease), background-color .3s var(--psw-ease), color .3s var(--psw-ease), border-color .3s var(--psw-ease), box-shadow .3s var(--psw-ease);
}

.psw-btn:hover,
.psw-btn:focus-visible {
  transform: translateY(-2px);
}

.psw-btn:focus-visible,
.psw-card:focus-visible,
.psw-service-card:focus-visible,
.psw-project-card:focus-visible,
.psw-swiper__nav button:focus-visible {
  outline: 2px solid var(--psw-accent);
  outline-offset: 3px;
}

.psw-btn--primary {
  background: var(--psw-primary);
  color: var(--psw-white);
}

.psw-btn--primary:hover,
.psw-btn--primary:focus-visible {
  background: var(--psw-dark-2);
  color: var(--psw-white);
}

.psw-btn--ghost {
  border-color: rgba(255, 255, 255, .42);
  color: var(--psw-white);
}

.psw-btn--ghost:hover,
.psw-btn--ghost:focus-visible {
  border-color: var(--psw-white);
  color: var(--psw-white);
}

.psw-card {
  overflow: hidden;
  border-radius: var(--psw-radius);
  background: var(--psw-white);
  color: inherit;
  box-shadow: 0 0 0 1px var(--psw-border);
  transition: transform .35s var(--psw-ease), box-shadow .35s var(--psw-ease);
}

.psw-card:hover,
.psw-card:focus-within {
  transform: translateY(-6px);
  box-shadow: var(--psw-shadow);
}

.psw-media {
  display: block;
  overflow: hidden;
  background: var(--psw-light);
}

.psw-media img,
.psw-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.psw-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.psw-hero {
  --psw-decor-green: #52833E;
  --psw-decor-yellow: #F0C011;
  --psw-decor-red: #C32727;
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(700px, 86svh, 920px);
  overflow: hidden;
  background: #F7F9F5;
  color: var(--psw-dark);
}

.psw-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  background: linear-gradient(90deg, var(--psw-primary) 0 72%, var(--psw-accent) 72% 88%, var(--psw-red) 88%);
}

.psw-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr);
  align-items: center;
  gap: clamp(34px, 4.5vw, 78px);
}

.psw-hero__content {
  min-width: 0;
  padding-block: clamp(16px, 3vw, 42px);
}

.psw-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: clamp(18px, 2vw, 28px);
  color: var(--psw-dark-2);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 4px;
  line-height: 1.4;
  text-transform: uppercase;
}

.psw-hero__eyebrow::after {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
}

.psw-hero__title {
  max-width: 760px;
  margin: 0 0 clamp(22px, 2.5vw, 34px);
  color: #101714;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 4.3vw, 76px);
  font-weight: 600;
  line-height: 1.01;
  letter-spacing: 0;
  text-wrap: balance;
}

.psw-hero__title-highlight {
  color: var(--psw-primary);
  white-space: nowrap;
}

.psw-hero__title-highlight::after {
  content: "";
  display: block;
  width: 64px;
  height: 2px;
  margin-top: 14px;
  background: currentColor;
}

.psw-hero__description {
  max-width: 680px;
  margin: 0;
  color: #405248;
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.62;
}

.psw-hero__description::first-line {
  color: var(--psw-dark-2);
}

.psw-hero__services {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(8px, 1vw, 15px);
  margin-top: clamp(26px, 3vw, 38px);
}

.psw-hero__service {
  display: grid;
  min-width: 0;
  color: inherit;
  text-align: center;
  text-decoration: none;
}

.psw-hero__service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 76px);
  aspect-ratio: 1 / .78;
  margin: 0 auto 10px;
  border: 1px solid #CBD9C7;
  border-radius: var(--psw-radius);
  background: #EDF4E9;
  color: #204E2D;
  font-size: 25px;
  transition: transform .3s var(--psw-ease), background-color .3s var(--psw-ease), color .3s var(--psw-ease);
}

.psw-hero__service:hover .psw-hero__service-icon,
.psw-hero__service:focus-visible .psw-hero__service-icon {
  transform: translateY(-3px);
  background: var(--psw-primary);
  color: var(--psw-white);
}

.psw-hero__service:focus-visible {
  outline: 2px solid var(--psw-accent);
  outline-offset: 4px;
}

.psw-hero__service-title,
.psw-hero__service-meta {
  overflow-wrap: anywhere;
}

.psw-hero__service-title {
  color: var(--psw-dark);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

.psw-hero__service-meta {
  margin-top: 5px;
  color: var(--psw-muted);
  font-size: 9px;
  font-weight: 650;
  line-height: 1.35;
  text-transform: uppercase;
}

.psw-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: clamp(28px, 3vw, 40px);
}

.psw-hero__cta {
  gap: 22px;
  min-width: min(250px, 100%);
  min-height: 58px;
  padding: 14px 26px;
  border: 1px solid var(--psw-dark-2);
  border-radius: var(--psw-radius);
  font-size: 15px;
}

.psw-hero__cta svg,
.psw-hero__cta i {
  flex: 0 0 auto;
  transition: transform .3s var(--psw-ease);
}

.psw-hero__cta:hover svg,
.psw-hero__cta:hover i,
.psw-hero__cta:focus-visible svg,
.psw-hero__cta:focus-visible i {
  transform: translateX(4px);
}

.psw-hero__cta--primary {
  border-color: var(--psw-primary);
  background: var(--psw-primary);
  color: var(--psw-white);
}

.psw-hero__cta--primary:hover,
.psw-hero__cta--primary:focus-visible {
  border-color: var(--psw-dark-2);
  background: var(--psw-dark-2);
  color: var(--psw-white);
}

.psw-hero__cta--secondary {
  background: transparent;
  color: var(--psw-dark);
}

.psw-hero__cta--secondary:hover,
.psw-hero__cta--secondary:focus-visible {
  background: #EDF4E9;
  color: var(--psw-dark);
}

.psw-hero__trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(30px, 3.5vw, 48px);
  padding-top: 24px;
  border-top: 1px solid var(--psw-border);
}

.psw-hero__trust-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding-inline: 18px;
}

.psw-hero__trust-item:first-child {
  padding-left: 0;
}

.psw-hero__trust-item:not(:last-child) {
  border-right: 1px solid #CBD6C8;
}

.psw-hero__trust-icon {
  color: #276239;
  font-size: 25px;
}

.psw-hero__trust-copy {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.psw-hero__trust-title,
.psw-hero__trust-meta {
  overflow-wrap: anywhere;
}

.psw-hero__trust-title {
  color: var(--psw-dark);
  font-size: 13px;
  line-height: 1.25;
}

.psw-hero__trust-meta {
  color: var(--psw-muted);
  font-size: 9px;
  line-height: 1.3;
  text-transform: uppercase;
}

.psw-hero__visual {
  position: relative;
  justify-self: end;
  width: 100%;
  max-width: 650px;
  isolation: isolate;
}

.psw-hero__visual::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: -7% -22% 35% 36%;
  border-radius: 48% 0 0 38%;
  background: var(--psw-decor-green);
  opacity: .13;
}

.psw-hero__paint-mask {
  --psw-image-overlay: .08;
  position: relative;
  z-index: 1;
  aspect-ratio: 4 / 5;
  max-height: 760px;
  overflow: hidden;
  border-radius: 46% 7% 34% 10% / 9% 15% 8% 11%;
  background: #DDE8D9;
  box-shadow: 0 28px 70px rgba(22, 42, 28, .14);
}

.psw-hero__paint-mask::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--psw-dark-2);
  opacity: var(--psw-image-overlay);
  pointer-events: none;
}

.psw-hero__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.psw-hero__decor {
  position: absolute;
  z-index: 3;
  inset: -4% -12% -5% -15%;
  pointer-events: none;
}

.psw-hero__decor-accent {
  position: absolute;
  display: block;
  clip-path: polygon(3% 12%, 100% 0, 94% 82%, 0 100%);
}

.psw-hero__decor-accent--green {
  top: 2%;
  right: -3%;
  width: 66%;
  height: 12%;
  background: var(--psw-decor-green);
  transform: rotate(-5deg);
}

.psw-hero__decor-accent--yellow {
  bottom: 8%;
  left: 1%;
  width: 42%;
  height: 7%;
  background: var(--psw-decor-yellow);
  transform: rotate(-9deg);
}

.psw-hero__decor-accent--red {
  bottom: 1%;
  left: 24%;
  width: 31%;
  height: 5%;
  background: var(--psw-decor-red);
  transform: rotate(-9deg);
}

.psw-hero__note {
  position: absolute;
  z-index: 4;
  top: 23%;
  right: 2%;
  color: var(--psw-white);
  font-family: "Segoe Script", "Bradley Hand", cursive;
  font-size: clamp(18px, 1.75vw, 30px);
  line-height: 1.35;
  text-align: center;
  transform: rotate(-5deg);
  text-shadow: 0 2px 16px rgba(0, 0, 0, .18);
}

.psw-hero__badge {
  position: absolute;
  z-index: 5;
  right: -4%;
  bottom: 2%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 126px;
  height: 126px;
  padding: 18px;
  border-radius: 50%;
  background: var(--psw-white);
  color: var(--psw-dark);
  box-shadow: 0 14px 40px rgba(22, 42, 28, .16);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

.psw-hero__badge > span {
  width: 18px;
  height: 24px;
  margin-bottom: 7px;
  border-radius: 100% 0 100% 0;
  background: var(--psw-decor-green);
  transform: rotate(32deg);
}

.psw-services,
.psw-projects {
  display: grid;
  gap: clamp(26px, 4vw, 36px);
}

.psw-services__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--psw-grid-gap);
}

.psw-service-card {
  grid-column: span 4;
  position: relative;
  overflow: hidden;
  border-radius: var(--psw-radius);
  background: var(--psw-white);
  color: inherit;
  text-decoration: none;
  box-shadow: 0 0 0 1px var(--psw-border);
  transition: transform .35s var(--psw-ease), box-shadow .35s var(--psw-ease);
}

.psw-service-card:nth-child(4),
.psw-service-card:nth-child(5) {
  grid-column: span 6;
}

.psw-service-card:hover,
.psw-service-card:focus-visible {
  transform: translateY(-7px);
  box-shadow: var(--psw-shadow);
}

.psw-service-card__media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--psw-light);
}

.psw-service-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s var(--psw-ease);
}

.psw-service-card:hover img,
.psw-service-card:focus-visible img {
  transform: scale(1.055);
}

.psw-service-card__body {
  display: grid;
  gap: 10px;
  padding: clamp(20px, 2.5vw, 26px);
}

.psw-service-card__index {
  color: var(--psw-primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .10em;
}

.psw-service-card strong {
  color: var(--psw-dark);
  font-size: clamp(21px, 2vw, 24px);
}

.psw-service-card__body > span:not(.psw-service-card__index) {
  color: var(--psw-muted);
  line-height: 1.6;
}

.psw-service-card em {
  color: var(--psw-primary);
  font-style: normal;
  font-weight: 750;
}

.psw-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--psw-border);
  border-radius: var(--psw-radius);
  background: var(--psw-border);
}

.psw-stat {
  min-width: 0;
  padding: clamp(26px, 3vw, 34px);
  background: var(--psw-white);
}

.psw-stat__value {
  display: flex;
  align-items: baseline;
  color: var(--psw-dark);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 850;
  line-height: 1;
}

.psw-stat__label {
  margin-top: 10px;
  color: var(--psw-muted);
}

.psw-swiper {
  overflow: hidden;
}

.psw-project-card {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--psw-radius);
  background: var(--psw-dark);
}

.psw-project-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--psw-ease), opacity .4s var(--psw-ease);
}

.psw-project-card:hover img,
.psw-project-card:focus-visible img {
  transform: scale(1.06);
  opacity: .78;
}

.psw-project-card__overlay {
  position: absolute;
  inset: auto 0 0;
  padding: clamp(22px, 3vw, 28px);
  background: linear-gradient(transparent, rgba(0, 0, 0, .82));
  color: var(--psw-white);
}

.psw-project-card__overlay small,
.psw-project-card__overlay strong {
  display: block;
}

.psw-project-card__overlay small {
  margin-bottom: 7px;
  color: #D9E7D3;
}

.psw-project-card__overlay strong {
  font-size: clamp(21px, 2vw, 25px);
}

.psw-swiper__nav {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

.psw-swiper__nav button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--psw-border);
  border-radius: 50%;
  background: var(--psw-white);
  color: var(--psw-dark);
  cursor: pointer;
  transition: background-color .25s var(--psw-ease), border-color .25s var(--psw-ease), color .25s var(--psw-ease);
}

.psw-swiper__nav button:hover,
.psw-swiper__nav button:focus-visible {
  border-color: var(--psw-primary);
  background: var(--psw-primary);
  color: var(--psw-white);
}

[data-psw-animate],
.psw-animate,
.psw-split-text {
  will-change: transform, opacity;
}

.psw-split-text .psw-split-line {
  display: block;
  overflow: hidden;
}

.psw-split-text .psw-split-line-inner {
  display: inline-block;
}

.psw-hidden {
  display: none !important;
}

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

@media (max-width: 1024px) {
  :root {
    --psw-container-gutter: 24px;
  }

  .psw-hero {
    min-height: clamp(680px, 86svh, 860px);
  }

  .psw-hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(300px, .76fr);
    gap: clamp(24px, 3vw, 42px);
  }

  .psw-hero__title {
    font-size: clamp(42px, 5.5vw, 58px);
  }

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

  .psw-hero__service-icon {
    width: min(100%, 66px);
  }

  .psw-hero__trust-item {
    grid-template-columns: 1fr;
    align-content: start;
    gap: 7px;
  }

  .psw-hero__note {
    top: 18%;
    right: 0;
    font-size: clamp(16px, 2.2vw, 23px);
  }

  .psw-hero__badge {
    right: -2%;
    width: 108px;
    height: 108px;
    padding: 14px;
    font-size: 9px;
  }

  .psw-service-card {
    grid-column: span 6;
  }

  .psw-service-card:nth-child(5) {
    grid-column: span 12;
  }

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

@media (max-width: 767px) {
  :root {
    --psw-container-gutter: 18px;
    --psw-section-padding: 58px;
  }

  .psw-hero {
    min-height: 0;
  }

  .psw-hero__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 42px;
  }

  .psw-hero__content {
    padding-block: 0;
  }

  .psw-hero__eyebrow {
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 10px;
    line-height: 1.6;
  }

  .psw-hero__title {
    max-width: 100%;
    font-size: clamp(38px, 12vw, 54px);
    line-height: 1.03;
  }

  .psw-hero__title-highlight {
    white-space: normal;
  }

  .psw-hero__title-highlight::after {
    margin-top: 10px;
  }

  .psw-hero__services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 10px;
  }

  .psw-hero__service:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    justify-self: center;
    width: 50%;
  }

  .psw-hero__actions {
    display: grid;
  }

  .psw-hero__cta {
    width: 100%;
  }

  .psw-hero__trust {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 12px;
  }

  .psw-hero__trust-item,
  .psw-hero__trust-item:first-child {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
    padding: 14px 0;
  }

  .psw-hero__trust-item:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid #CBD6C8;
  }

  .psw-hero__visual {
    justify-self: center;
    width: 100%;
    max-width: 580px;
  }

  .psw-hero__paint-mask {
    aspect-ratio: 4 / 3;
    border-radius: 24% 6% 20% 7% / 8% 12% 7% 10%;
  }

  .psw-hero__visual::before {
    inset: -8% -20% 42% 42%;
  }

  .psw-hero__decor {
    inset: -3% -5% -5% -6%;
  }

  .psw-hero__decor-accent--green {
    width: 52%;
    height: 10%;
  }

  .psw-hero__decor-accent--yellow {
    left: 2%;
    width: 36%;
  }

  .psw-hero__decor-accent--red {
    left: 28%;
    width: 24%;
  }

  .psw-hero__note {
    display: none;
  }

  .psw-hero__badge {
    right: 3%;
    bottom: -7%;
    width: 92px;
    height: 92px;
    padding: 10px;
    font-size: 8px;
  }

  .psw-hero__badge > span {
    width: 12px;
    height: 16px;
    margin-bottom: 4px;
  }

  .psw-actions {
    display: grid;
  }

  .psw-btn {
    width: 100%;
  }

  .psw-services__grid {
    grid-template-columns: 1fr;
  }

  .psw-service-card,
  .psw-service-card:nth-child(4),
  .psw-service-card:nth-child(5) {
    grid-column: auto;
  }

  .psw-stats {
    grid-template-columns: 1fr;
  }

  .psw-heading__title,
  .psw-title {
    font-size: clamp(31px, 10vw, 43px);
  }
}

@media (prefers-reduced-motion: reduce) {
  [class*="psw-"],
  [class*="psw-"]::before,
  [class*="psw-"]::after,
  [data-psw-animate],
  [data-psw-animate]::before,
  [data-psw-animate]::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }

  [data-psw-animate],
  .psw-animate,
  .psw-split-text {
    transform: none !important;
    opacity: 1 !important;
  }
}

.psw-about {
  position: relative;
  overflow: hidden;
  padding-block: clamp(72px, 8vw, 120px);
  background: #F7F9F5;
  color: var(--psw-dark);
}

.psw-about::before,
.psw-about::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.psw-about::before {
  top: 8%;
  right: -8%;
  width: 28%;
  height: 62%;
  opacity: .22;
  background: linear-gradient(118deg, transparent 35%, #E7EEE4 35% 42%, transparent 42% 56%, #E7EEE4 56% 64%, transparent 64%);
  transform: rotate(8deg);
}

.psw-about::after {
  right: 9%;
  bottom: 8%;
  width: 160px;
  height: 1px;
  background: var(--psw-primary);
  opacity: .35;
  transform: rotate(-5deg);
}

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

.psw-about__frame {
  display: grid;
  grid-template-columns: minmax(0, 48%) minmax(0, 52%);
  align-items: center;
  max-width: 1280px;
  margin-inline: auto;
  border: 1px solid #DDE6DA;
  border-radius: 2px;
  background: rgba(255, 255, 255, .42);
  box-shadow: 0 18px 60px rgba(23, 26, 24, .08);
}

.psw-about__visual {
  position: relative;
  align-self: stretch;
  min-width: 0;
  overflow: hidden;
  padding: clamp(34px, 5vw, 74px) clamp(30px, 4vw, 64px) clamp(90px, 8vw, 118px);
  background: #F0F5ED;
}

.psw-about__green-panel {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 46%;
  height: 78%;
  background: var(--psw-dark-2);
}

.psw-about__image-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 4 / 5;
  margin-inline: auto;
  overflow: hidden;
  border-radius: 2px;
  background: #DDE8D9;
  box-shadow: 0 18px 38px rgba(23, 26, 24, .14);
}

.psw-about__image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--psw-dark-2);
  opacity: var(--psw-about-overlay, .04);
  pointer-events: none;
}

.psw-about__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.psw-about__yellow-accent {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 14%;
  width: 130px;
  height: 46%;
  background: var(--psw-accent);
  clip-path: polygon(32% 0, 100% 0, 100% 96%, 0 96%, 0 78%, 32% 78%);
  opacity: .9;
}

.psw-about__vertical-copy {
  position: absolute;
  z-index: 3;
  top: 7%;
  left: clamp(18px, 2.5vw, 34px);
  display: grid;
  gap: 8px;
  color: var(--psw-white);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 3px;
  line-height: 1.4;
  text-transform: uppercase;
}

.psw-about__vertical-copy::after {
  content: "";
  width: 50px;
  height: 1px;
  margin-top: 10px;
  background: var(--psw-white);
}

.psw-about__bottom-copy {
  position: absolute;
  z-index: 3;
  bottom: 24px;
  left: clamp(30px, 4vw, 64px);
  color: var(--psw-dark-2);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 2.5px;
  line-height: 1.5;
  text-transform: uppercase;
}

.psw-about__stat {
  position: absolute;
  z-index: 4;
  right: clamp(18px, 3vw, 42px);
  bottom: -2%;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  width: min(390px, 76%);
  min-height: 116px;
  padding: 22px 28px;
  border: 1px solid #E1E8DD;
  background: var(--psw-white);
  box-shadow: 0 16px 36px rgba(23, 26, 24, .13);
}

.psw-about__stat::before {
  content: "";
  width: 45px;
  height: 54px;
  border: 3px solid var(--psw-primary);
  border-radius: 48% 48% 42% 42%;
  opacity: .85;
}

.psw-about__stat-number {
  color: var(--psw-primary);
  font-size: clamp(44px, 5vw, 70px);
  font-weight: 850;
  line-height: .9;
}

.psw-about__stat-label {
  color: var(--psw-dark);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.35;
}

.psw-about__dots {
  position: absolute;
  z-index: 2;
  right: 3%;
  bottom: 5%;
  width: 120px;
  height: 90px;
  opacity: .72;
  background-image: radial-gradient(var(--psw-primary) 1.5px, transparent 1.5px);
  background-size: 13px 13px;
}

.psw-about__content {
  min-width: 0;
  padding: clamp(44px, 6vw, 90px) clamp(34px, 6vw, 90px);
}

.psw-about__eyebrow {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: clamp(20px, 2.5vw, 30px);
  color: var(--psw-dark-2);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 3px;
  line-height: 1.4;
  text-transform: uppercase;
}

.psw-about__eyebrow::before {
  content: "";
  width: 52px;
  height: 1px;
  flex: 0 0 auto;
  background: var(--psw-primary);
}

.psw-about__title {
  max-width: 700px;
  margin: 0 0 clamp(24px, 3vw, 36px);
  color: var(--psw-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 4.2vw, 70px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

.psw-about__title-highlight {
  color: var(--psw-primary);
}

.psw-about__text {
  max-width: 680px;
  margin: 0;
  color: var(--psw-muted);
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.65;
}

.psw-about__text + .psw-about__text {
  margin-top: 22px;
}

.psw-about__features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: clamp(30px, 4vw, 48px);
}

.psw-about__feature {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  min-width: 0;
}

.psw-about__feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  aspect-ratio: 1;
  border-radius: var(--psw-radius);
  background: var(--psw-light);
  color: var(--psw-primary);
  font-size: 24px;
}

.psw-about__feature-content {
  display: grid;
  min-width: 0;
  gap: 7px;
  padding-top: 3px;
}

.psw-about__feature-title,
.psw-about__feature-text {
  overflow-wrap: anywhere;
}

.psw-about__feature-title {
  color: var(--psw-dark);
  font-size: 15px;
  line-height: 1.25;
}

.psw-about__feature-text {
  color: var(--psw-muted);
  font-size: 13px;
  line-height: 1.45;
}

.psw-about__footer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: clamp(34px, 4vw, 50px);
}

.psw-about__cta {
  gap: 24px;
  min-width: 230px;
  min-height: 56px;
  padding: 14px 24px;
  border: 1px solid var(--psw-primary);
  border-radius: 6px;
  background: var(--psw-primary);
  color: var(--psw-white);
  font-size: 15px;
  font-weight: 750;
}

.psw-about__cta:hover,
.psw-about__cta:focus-visible {
  background: var(--psw-dark-2);
  color: var(--psw-white);
}

.psw-about__cta svg,
.psw-about__cta i {
  flex: 0 0 auto;
  transition: transform .3s var(--psw-ease);
}

.psw-about__cta:hover svg,
.psw-about__cta:hover i,
.psw-about__cta:focus-visible svg,
.psw-about__cta:focus-visible i {
  transform: translateX(4px);
}

.psw-about__signature {
  max-width: 220px;
  color: var(--psw-dark-2);
  font-family: "Segoe Script", "Bradley Hand", cursive;
  font-size: clamp(17px, 1.5vw, 25px);
  line-height: 1.35;
  text-align: center;
  transform: rotate(-4deg);
}

/* Company page shared primitives */
.psw-title-highlight {
  color: var(--psw-primary);
}

.psw-feature-grid {
  display: grid;
  gap: clamp(20px, 2.4vw, 38px);
}

.psw-feature-item {
  min-width: 0;
}

.psw-floating-card {
  position: absolute;
  z-index: 3;
  border-radius: 0;
  box-shadow: 0 18px 46px rgba(23, 26, 24, .18);
}

.psw-signature {
  color: var(--psw-primary);
  font-family: "Segoe Script", "Bradley Hand", cursive;
  line-height: 1.35;
  transform: rotate(-4deg);
}

.psw-dark-section {
  background: var(--psw-dark-2);
  color: var(--psw-white);
}

/* Company intro */
.psw-company-intro {
  position: relative;
  overflow: hidden;
  background: var(--psw-white);
  color: var(--psw-dark);
}

.psw-company-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 47%) minmax(0, 53%);
  align-items: stretch;
  gap: 0;
}

.psw-company-intro__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(24px, 3vw, 48px) clamp(32px, 5vw, 76px) clamp(28px, 4vw, 60px) 0;
}

.psw-company-intro__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: clamp(32px, 4vw, 58px);
  color: var(--psw-muted);
  font-size: 12px;
  font-weight: 650;
}

.psw-company-intro__breadcrumb a {
  color: var(--psw-primary);
  text-decoration: none;
}

.psw-company-intro__breadcrumb a:focus-visible {
  outline: 2px solid var(--psw-accent);
  outline-offset: 3px;
}

.psw-company-intro__eyebrow {
  margin-bottom: 20px;
}

.psw-company-intro__title {
  max-width: 650px;
  margin: 0;
  font-size: clamp(48px, 4.7vw, 76px);
  line-height: 1.01;
  text-wrap: balance;
}

.psw-company-intro__description {
  max-width: 650px;
  margin: clamp(24px, 3vw, 38px) 0 0;
  color: var(--psw-muted);
  font-size: clamp(15px, 1.12vw, 18px);
  line-height: 1.7;
}

.psw-company-intro__actions {
  margin-top: clamp(28px, 3vw, 42px);
}

.psw-company-intro__actions .psw-btn {
  gap: 18px;
  min-height: 56px;
  padding-inline: 22px;
  font-size: 12px;
  letter-spacing: .05em;
}

.psw-company-intro__btn--secondary {
  border-color: var(--psw-border);
  background: var(--psw-white);
  color: var(--psw-dark);
}

.psw-company-intro__btn--secondary:hover,
.psw-company-intro__btn--secondary:focus-visible {
  border-color: var(--psw-primary);
  background: var(--psw-light);
  color: var(--psw-primary);
}

.psw-company-intro__decorative-copy {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: clamp(28px, 4vw, 52px);
  color: var(--psw-muted);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .08em;
  line-height: 1.45;
}

.psw-company-intro__decorative-copy::before {
  content: "";
  width: 32px;
  height: 2px;
  flex: 0 0 auto;
  background: var(--psw-dark-2);
}

.psw-company-intro__visual {
  position: relative;
  min-width: 0;
  padding-bottom: 42px;
}

.psw-company-intro__media {
  width: 100%;
  height: 100%;
  min-height: 680px;
}

.psw-company-intro__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.psw-company-intro__services {
  left: 7%;
  bottom: 0;
  width: min(390px, 74%);
  padding: 28px 30px 28px 48px;
  background: var(--psw-primary);
  color: var(--psw-white);
}

.psw-company-intro__services::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 18px;
  background: var(--psw-accent);
  pointer-events: none;
}

.psw-company-intro__service {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  font-size: 16px;
}

.psw-company-intro__service + .psw-company-intro__service {
  margin-top: 18px;
}

.psw-company-intro__service-icon {
  width: 30px;
  color: var(--psw-white);
  font-size: 24px;
}

.psw-company-intro__signature {
  position: absolute;
  right: 2%;
  bottom: 0;
  max-width: 150px;
  padding: 14px;
  background: rgba(255, 255, 255, .92);
  font-size: clamp(15px, 1.5vw, 22px);
  text-align: center;
}

/* Company foundation */
.psw-company-foundation {
  position: relative;
  overflow: hidden;
  background: var(--psw-white);
  color: var(--psw-dark);
}

.psw-company-foundation__grid {
  display: grid;
  grid-template-columns: minmax(0, 43%) minmax(0, 57%);
  align-items: center;
  gap: clamp(54px, 7vw, 110px);
}

.psw-company-foundation__visual {
  position: relative;
  min-width: 0;
  padding: 36px 0 44px 38px;
}

.psw-company-foundation__visual::before {
  content: "";
  position: absolute;
  inset: 0 43% 18% 0;
  background: var(--psw-dark-2);
  pointer-events: none;
}

.psw-company-foundation__media {
  position: relative;
  z-index: 1;
  width: 86%;
  margin-left: auto;
  aspect-ratio: 4 / 5.2;
}

.psw-company-foundation__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.psw-company-foundation__dots {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  width: 118px;
  height: 96px;
  background-image: radial-gradient(var(--psw-accent) 2px, transparent 2px);
  background-size: 13px 13px;
  pointer-events: none;
}

.psw-company-foundation__content {
  min-width: 0;
}

.psw-company-foundation__eyebrow {
  margin-bottom: 20px;
}

.psw-company-foundation__title {
  max-width: 730px;
  margin: 0;
  font-size: clamp(42px, 4vw, 66px);
  line-height: 1.03;
  text-wrap: balance;
}

.psw-company-foundation__text {
  max-width: 750px;
  margin: 26px 0 0;
  color: var(--psw-muted);
  font-size: 16px;
  line-height: 1.65;
}

.psw-company-foundation__text + .psw-company-foundation__text {
  margin-top: 18px;
}

.psw-company-foundation__steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(42px, 5vw, 70px);
}

.psw-company-foundation__step {
  position: relative;
  padding-right: clamp(8px, 2vw, 28px);
}

.psw-company-foundation__step:not(:last-child) {
  border-right: 1px solid var(--psw-border);
}

.psw-company-foundation__step-number {
  display: block;
  color: var(--psw-dark);
  font-size: 30px;
  font-weight: 850;
  line-height: 1;
}

.psw-company-foundation__step::before {
  content: "";
  display: block;
  width: 38px;
  height: 3px;
  margin: 13px 0 22px;
  background: var(--psw-accent);
}

.psw-company-foundation__step-icon {
  display: inline-flex;
  color: var(--psw-primary);
  font-size: 38px;
}

.psw-company-foundation__step-title {
  margin: 15px 0 8px;
  color: var(--psw-dark);
  font-size: 18px;
  line-height: 1.2;
}

.psw-company-foundation__step p {
  margin: 0;
  color: var(--psw-muted);
  font-size: 13px;
  line-height: 1.55;
}

.psw-company-foundation__step-line {
  display: none;
}

/* Company vision */
.psw-company-vision {
  position: relative;
  overflow: hidden;
  background: var(--psw-dark-2);
}

.psw-company-vision::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  background: repeating-linear-gradient(118deg, transparent 0 72px, rgba(255, 255, 255, .035) 72px 73px);
  pointer-events: none;
}

.psw-company-vision .psw-container {
  position: relative;
  z-index: 1;
}

.psw-company-vision__top {
  display: grid;
  grid-template-columns: minmax(0, 46%) minmax(0, 54%);
  align-items: center;
  gap: clamp(44px, 7vw, 110px);
}

.psw-company-vision__title {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--psw-white);
  font-size: clamp(44px, 4.4vw, 70px);
  line-height: 1.03;
  text-wrap: balance;
}

.psw-company-vision__title-highlight {
  color: var(--psw-accent);
}

.psw-company-vision__description {
  max-width: 570px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: 16px;
  line-height: 1.7;
}

.psw-company-vision__media {
  position: relative;
  width: 100%;
  aspect-ratio: 1.35 / 1;
  background: var(--psw-dark);
}

.psw-company-vision__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--psw-dark-2);
  opacity: var(--psw-company-vision-overlay, .42);
  pointer-events: none;
}

.psw-company-vision__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.psw-company-vision__vertical-copy {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 7%;
  max-width: 150px;
  color: var(--psw-white);
  font-size: clamp(13px, 1.25vw, 18px);
  font-weight: 800;
  line-height: 1.55;
  transform: translateY(-50%);
}

.psw-company-vision__vertical-copy::after {
  content: "";
  display: block;
  width: 34px;
  height: 4px;
  margin-top: 20px;
  background: var(--psw-accent);
}

.psw-company-vision__values {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(58px, 7vw, 92px);
}

.psw-company-vision__value {
  padding-right: clamp(18px, 2.5vw, 38px);
}

.psw-company-vision__value:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, .22);
}

.psw-company-vision__value-icon {
  display: inline-flex;
  color: var(--psw-accent);
  font-size: 40px;
}

.psw-company-vision__value-title {
  margin: 22px 0 10px;
  color: var(--psw-white);
  font-size: 18px;
  line-height: 1.25;
}

.psw-company-vision__value-text {
  margin: 0;
  color: rgba(255, 255, 255, .74);
  font-size: 14px;
  line-height: 1.6;
}

/* Company presence */
.psw-company-presence {
  position: relative;
  overflow: hidden;
  background: var(--psw-white);
  color: var(--psw-dark);
}

.psw-company-presence::after {
  content: "";
  position: absolute;
  top: 4%;
  right: -7%;
  width: 34%;
  height: 45%;
  opacity: .45;
  background: repeating-linear-gradient(135deg, transparent 0 16px, var(--psw-light) 16px 17px);
  pointer-events: none;
}

.psw-company-presence__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 60%) minmax(0, 40%);
  align-items: center;
  gap: clamp(40px, 6vw, 92px);
}

.psw-company-presence__content,
.psw-company-presence__visual {
  min-width: 0;
}

.psw-company-presence__title {
  max-width: 780px;
  margin: 22px 0 0;
  font-size: clamp(42px, 4vw, 66px);
  line-height: 1.03;
  text-wrap: balance;
}

.psw-company-presence__text {
  max-width: 760px;
  margin: 25px 0 0;
  color: var(--psw-muted);
  font-size: 16px;
  line-height: 1.65;
}

.psw-company-presence__text + .psw-company-presence__text {
  margin-top: 16px;
}

.psw-company-presence__stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(38px, 5vw, 64px);
  gap: 0;
}

.psw-company-presence__stat {
  min-height: 210px;
  padding: 26px 24px;
  border: 1px solid var(--psw-border);
  border-radius: 0;
  box-shadow: none;
}

.psw-company-presence__stat + .psw-company-presence__stat {
  border-left: 0;
}

.psw-company-presence__stat-icon {
  display: inline-flex;
  color: var(--psw-primary);
  font-size: 38px;
}

.psw-company-presence__stat h3 {
  margin: 18px 0 9px;
  color: var(--psw-dark);
  font-size: 18px;
  line-height: 1.2;
}

.psw-company-presence__stat p {
  margin: 0;
  color: var(--psw-muted);
  font-size: 13px;
  line-height: 1.5;
}

.psw-company-presence__visual {
  position: relative;
  padding-bottom: 70px;
}

.psw-company-presence__map {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.12;
  background: var(--psw-light);
  isolation: isolate;
}

.psw-company-presence__map-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: .7;
}

.psw-company-presence__markers {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.psw-company-presence__marker {
  position: absolute;
  width: 13px;
  height: 13px;
  border: 3px solid var(--psw-white);
  border-radius: 50% 50% 50% 0;
  background: var(--psw-primary);
  box-shadow: 0 4px 9px rgba(23, 26, 24, .2);
  transform: rotate(-45deg);
}

.psw-company-presence__marker--1 { top: 15%; left: 48%; }
.psw-company-presence__marker--2 { top: 23%; left: 67%; }
.psw-company-presence__marker--3 { top: 31%; left: 38%; }
.psw-company-presence__marker--4 { top: 39%; left: 58%; }
.psw-company-presence__marker--5 { top: 49%; left: 45%; }
.psw-company-presence__marker--6 { top: 58%; left: 65%; }
.psw-company-presence__marker--7 { top: 67%; left: 34%; }
.psw-company-presence__marker--8 { top: 74%; left: 55%; }
.psw-company-presence__marker--9 { top: 84%; left: 46%; }

.psw-company-presence__signature {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  max-width: 210px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, .9);
  font-size: clamp(17px, 1.7vw, 25px);
  text-align: center;
}

/* Company team */
.psw-company-team {
  position: relative;
  overflow: hidden;
  padding-bottom: clamp(34px, 4vw, 62px);
  background: var(--psw-white);
  color: var(--psw-dark);
}

.psw-company-team::before {
  content: "";
  position: absolute;
  top: 0;
  left: 58%;
  width: 26%;
  height: 38%;
  background: var(--psw-light);
  clip-path: polygon(30% 0, 100% 0, 70% 100%, 0 100%);
  opacity: .6;
  pointer-events: none;
}

.psw-company-team__top {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 51%) minmax(0, 49%);
  align-items: stretch;
}

.psw-company-team__content {
  min-width: 0;
  padding: clamp(66px, 6.5vw, 108px) clamp(30px, 4.5vw, 78px) clamp(44px, 5vw, 82px) max(var(--psw-container-gutter), calc((100vw - var(--psw-container)) / 2));
}

.psw-company-team__eyebrow {
  margin-bottom: 24px;
}

.psw-company-team__title {
  max-width: 900px;
  margin: 0;
  color: var(--psw-dark);
  font-size: clamp(44px, 4.2vw, 70px);
  line-height: 1.02;
  text-wrap: balance;
}

.psw-company-team__description {
  max-width: 790px;
  margin: 26px 0 0;
  color: var(--psw-muted);
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.65;
}

.psw-company-team__departments {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(34px, 4vw, 54px);
}

.psw-company-team__department {
  min-height: 220px;
  padding: 22px 20px;
  border: 1px solid var(--psw-border);
  border-radius: 6px;
  box-shadow: none;
}

.psw-company-team__department-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 9px;
  background: var(--psw-primary);
  color: var(--psw-white);
  font-size: 27px;
}

.psw-company-team__department h3 {
  margin: 16px 0 0;
  color: var(--psw-dark);
  font-size: 18px;
  line-height: 1.2;
}

.psw-company-team__department-line {
  display: block;
  width: 38px;
  height: 3px;
  margin: 12px 0 11px;
  background: var(--psw-accent);
}

.psw-company-team__department p {
  margin: 0;
  color: var(--psw-muted);
  font-size: 13px;
  line-height: 1.5;
}

.psw-company-team__visual {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 690px;
  background: var(--psw-light);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
}

.psw-company-team__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(38, 63, 43, .08), rgba(23, 26, 24, .28));
  pointer-events: none;
}

.psw-company-team__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.psw-company-team__dots {
  position: absolute;
  z-index: 2;
  top: 22px;
  right: 6%;
  width: 108px;
  height: 82px;
  background-image: radial-gradient(var(--psw-accent) 2.4px, transparent 2.4px);
  background-size: 15px 15px;
  pointer-events: none;
}

.psw-company-team__signature {
  position: absolute;
  z-index: 2;
  right: 8%;
  bottom: 16%;
  max-width: 230px;
  color: var(--psw-white);
  font-size: clamp(20px, 2vw, 31px);
  text-align: center;
  transform: rotate(-5deg);
}

.psw-company-team__signature::after {
  content: "";
  display: block;
  width: 130px;
  height: 3px;
  margin: 16px auto 0;
  border-radius: 50%;
  background: var(--psw-white);
  transform: rotate(-8deg);
}

.psw-company-team__workforce-wrap {
  position: relative;
  z-index: 3;
  width: calc(100% - 64px);
  margin: 22px auto 0;
  padding: 30px 28px;
  border: 1px solid var(--psw-border);
  background: rgba(244, 246, 242, .9);
  box-shadow: 0 14px 42px rgba(23, 26, 24, .07);
}

.psw-company-team__workforce {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr)) minmax(220px, 1.35fr);
  align-items: stretch;
}

.psw-company-team__workforce-item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 4px 16px;
  border-right: 1px solid rgba(104, 112, 106, .28);
}

.psw-company-team__workforce-icon {
  color: var(--psw-primary);
  font-size: 38px;
}

.psw-company-team__workforce-copy {
  display: grid;
  min-width: 0;
}

.psw-company-team__workforce-copy strong {
  color: var(--psw-dark);
  font-size: 25px;
  line-height: 1;
}

.psw-company-team__workforce-copy span {
  margin-top: 6px;
  color: var(--psw-dark);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.psw-company-team__workforce-copy::after {
  content: "";
  width: 34px;
  height: 3px;
  margin-top: 16px;
  background: var(--psw-accent);
}

.psw-company-team__closing {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  min-width: 0;
  padding-left: 28px;
}

.psw-company-team__closing-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--psw-light);
  color: var(--psw-primary);
  font-size: 24px;
}

.psw-company-team__closing strong {
  color: var(--psw-primary);
  font-size: 11px;
  letter-spacing: .11em;
  line-height: 1.7;
}

/* Company CTA */
.psw-company-cta {
  position: relative;
  overflow: hidden;
  background: var(--psw-dark-2);
}

.psw-company-cta__grid {
  display: grid;
  grid-template-columns: minmax(0, 51%) minmax(0, 49%);
  min-height: 650px;
}

.psw-company-cta__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-width: 0;
  background: var(--psw-dark-2);
}

.psw-company-cta__content::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: -15%;
  width: 30%;
  height: 100%;
  background: var(--psw-dark-2);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  pointer-events: none;
}

.psw-company-cta__content-inner {
  position: relative;
  width: min(620px, calc(100% - 64px));
  margin-inline: auto;
  padding: clamp(64px, 7vw, 110px) 0;
}

.psw-company-cta__title {
  max-width: 610px;
  margin: 22px 0 0;
  color: var(--psw-white);
  font-size: clamp(44px, 4.4vw, 70px);
  line-height: 1.03;
  text-wrap: balance;
}

.psw-company-cta__title-highlight {
  color: var(--psw-accent);
}

.psw-company-cta__description {
  max-width: 540px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: 16px;
  line-height: 1.7;
}

.psw-company-cta__button {
  gap: 28px;
  min-height: 58px;
  margin-top: 34px;
  padding-inline: 24px 14px;
  border-color: var(--psw-accent);
  background: var(--psw-accent);
  color: var(--psw-dark);
  font-size: 12px;
  letter-spacing: .05em;
}

.psw-company-cta__button svg,
.psw-company-cta__button i {
  padding: 10px;
  background: var(--psw-white);
  color: var(--psw-primary);
}

.psw-company-cta__button:hover,
.psw-company-cta__button:focus-visible {
  border-color: var(--psw-white);
  background: var(--psw-white);
  color: var(--psw-dark);
}

.psw-company-cta__lines {
  position: absolute;
  left: -9%;
  bottom: -42px;
  width: 180px;
  height: 70px;
  opacity: .22;
  background: repeating-linear-gradient(115deg, transparent 0 12px, var(--psw-white) 12px 14px);
  pointer-events: none;
}

.psw-company-cta__visual {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 100%;
  background: var(--psw-light);
}

.psw-company-cta__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.psw-company-cta__quality-card {
  top: 50%;
  right: 8%;
  display: grid;
  width: 190px;
  padding: 28px 26px;
  background: rgba(23, 26, 24, .92);
  color: var(--psw-white);
  transform: translateY(-50%);
}

.psw-company-cta__quality-card::before,
.psw-company-cta__quality-card::after {
  content: "";
  width: 32px;
  height: 3px;
  background: var(--psw-accent);
}

.psw-company-cta__quality-card::before { margin-bottom: 16px; }
.psw-company-cta__quality-card::after { margin-top: 16px; }

.psw-company-cta__quality-card span {
  font-size: 13px;
  font-weight: 750;
  line-height: 1.75;
}

/* Service hero */
.psw-service-hero {
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: 700px;
  overflow: hidden;
  background: var(--psw-white);
  color: var(--psw-dark);
}

.psw-service-hero::before {
  content: "";
  position: absolute;
  inset: 0 50% 0 0;
  opacity: .4;
  background: linear-gradient(120deg, var(--psw-white) 0 45%, rgba(240, 245, 237, .7) 45% 46%, var(--psw-white) 46% 100%);
  pointer-events: none;
}

.psw-service-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 50%) minmax(0, 50%);
  width: 100%;
}

.psw-service-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(52px, 5vw, 84px) clamp(32px, 5vw, 82px) clamp(42px, 4vw, 66px) max(var(--psw-container-gutter), calc((100vw - var(--psw-container)) / 2));
}

.psw-service-hero__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: clamp(28px, 4vw, 50px);
  color: var(--psw-muted);
  font-size: 11px;
  font-weight: 650;
}

.psw-service-hero__breadcrumb a {
  color: var(--psw-dark);
  text-decoration: none;
}

.psw-service-hero__breadcrumb a:hover,
.psw-service-hero__breadcrumb a:focus-visible {
  color: var(--psw-primary);
}

.psw-service-hero__breadcrumb a:focus-visible {
  outline: 2px solid var(--psw-accent);
  outline-offset: 3px;
}

.psw-service-hero__eyebrow {
  margin-bottom: 18px;
  color: var(--psw-primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .11em;
}

.psw-service-hero__title {
  max-width: 760px;
  margin: 0;
  color: var(--psw-dark);
  font-size: clamp(42px, 4vw, 66px);
  line-height: 1.03;
  text-wrap: balance;
}

.psw-service-hero__description {
  max-width: 760px;
  margin: 26px 0 0;
  color: var(--psw-muted);
  font-size: 15px;
  line-height: 1.7;
}

.psw-service-hero__actions {
  margin-top: 30px;
}

.psw-service-hero__actions .psw-btn {
  gap: 16px;
  min-width: 190px;
  min-height: 54px;
  font-size: 12px;
}

.psw-service-hero__button--primary {
  border-color: var(--psw-accent);
  background: var(--psw-accent);
  color: var(--psw-dark);
}

.psw-service-hero__button--primary:hover,
.psw-service-hero__button--primary:focus-visible {
  border-color: var(--psw-primary);
  background: var(--psw-primary);
  color: var(--psw-white);
}

.psw-service-hero__button--secondary {
  border-color: var(--psw-primary);
  background: transparent;
  color: var(--psw-dark);
}

.psw-service-hero__button--secondary:hover,
.psw-service-hero__button--secondary:focus-visible {
  background: var(--psw-light);
  color: var(--psw-primary);
}

.psw-service-hero__trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 760px;
  margin-top: clamp(30px, 4vw, 48px);
}

.psw-service-hero__trust-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.psw-service-hero__trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 2px solid var(--psw-primary);
  border-radius: 50%;
  color: var(--psw-primary);
  font-size: 16px;
}

.psw-service-hero__trust-item > span:last-child {
  display: grid;
}

.psw-service-hero__trust-item strong {
  color: var(--psw-dark);
  font-size: 11px;
  line-height: 1.25;
}

.psw-service-hero__trust-item small {
  margin-top: 3px;
  color: var(--psw-muted);
  font-size: 9px;
  line-height: 1.35;
}

.psw-service-hero__visual {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 700px;
  background: var(--psw-light);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
}

.psw-service-hero__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.psw-service-hero__service-card {
  right: 3%;
  bottom: 0;
  display: grid;
  width: 190px;
  padding: 28px 26px;
  background: var(--psw-dark-2);
  color: var(--psw-white);
}

.psw-service-hero__service-card span {
  font-size: 13px;
  font-weight: 750;
  line-height: 1.7;
}

.psw-service-hero__service-card::after {
  content: "";
  width: 28px;
  height: 3px;
  margin-top: 14px;
  background: var(--psw-accent);
  pointer-events: none;
}

/* Service why */
.psw-service-why {
  position: relative;
  overflow: hidden;
  background: var(--psw-dark-2);
}

.psw-service-why__grid {
  display: grid;
  grid-template-columns: minmax(0, 58%) minmax(0, 42%);
  min-height: 560px;
}

.psw-service-why__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-width: 0;
  background: var(--psw-dark-2);
}

.psw-service-why__content::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: -15%;
  width: 30%;
  height: 100%;
  background: var(--psw-dark-2);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.psw-service-why__content-inner {
  width: min(840px, calc(100% - 64px));
  margin-inline: auto;
  padding: clamp(58px, 6vw, 92px) 0;
}

.psw-service-why__eyebrow {
  margin-bottom: 18px;
  color: var(--psw-white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
}

.psw-service-why__title {
  max-width: 670px;
  margin: 0;
  color: var(--psw-white);
  font-size: clamp(38px, 3.6vw, 58px);
  line-height: 1.06;
  text-wrap: balance;
}

.psw-service-why__title-highlight {
  color: var(--psw-accent);
}

.psw-service-why__benefits {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 760px;
  margin-top: clamp(36px, 5vw, 62px);
  gap: 34px 58px;
}

.psw-service-why__benefit {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: start;
  gap: 16px;
}

.psw-service-why__benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 2px solid var(--psw-accent);
  border-radius: 50%;
  color: var(--psw-accent);
  font-size: 21px;
}

.psw-service-why__benefit h3 {
  margin: 0;
  color: var(--psw-white);
  font-size: 15px;
  line-height: 1.25;
}

.psw-service-why__benefit p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, .76);
  font-size: 12px;
  line-height: 1.5;
}

.psw-service-why__visual {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 560px;
  background: var(--psw-light);
}

.psw-service-why__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.psw-service-why__badge {
  right: 0;
  bottom: 0;
  width: 250px;
  padding: 34px 28px;
  background: var(--psw-accent);
  color: var(--psw-dark);
  box-shadow: none;
}

.psw-service-why__badge strong {
  font-size: 16px;
  line-height: 1.45;
}

.psw-service-why__badge span {
  display: block;
  width: 30px;
  height: 3px;
  margin-top: 20px;
  background: var(--psw-dark);
}

/* Laptop */
@media (max-width: 1366px) {
  .psw-company-intro__title,
  .psw-company-foundation__title,
  .psw-company-presence__title,
  .psw-company-vision__title,
  .psw-company-cta__title {
    font-size: clamp(40px, 4.2vw, 60px);
  }

  .psw-company-intro__media { min-height: 620px; }
  .psw-company-intro__services { width: min(350px, 76%); }
  .psw-company-cta__grid { min-height: 590px; }

  .psw-company-team__title { font-size: clamp(40px, 4vw, 60px); }
  .psw-company-team__visual { min-height: 640px; }
  .psw-company-team__workforce-wrap { width: calc(100% - 48px); padding-inline: 18px; }
  .psw-company-team__workforce { grid-template-columns: repeat(4, minmax(0, 1fr)); row-gap: 28px; }
  .psw-company-team__workforce-item:nth-child(4) { border-right: 0; }
  .psw-company-team__closing { padding-left: 16px; }
  .psw-service-hero__title { font-size: clamp(38px, 3.8vw, 58px); }
  .psw-service-hero,
  .psw-service-hero__visual { min-height: 640px; }
  .psw-service-why__title { font-size: clamp(36px, 3.4vw, 52px); }
}

/* Tablet Extra */
@media (max-width: 1200px) {
  .psw-company-intro__grid,
  .psw-company-foundation__grid,
  .psw-company-presence__grid,
  .psw-company-team__top,
  .psw-service-hero__grid,
  .psw-service-why__grid,
  .psw-company-cta__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .psw-company-intro__content { padding-right: 0; }
  .psw-company-intro__media { min-height: 0; aspect-ratio: 16 / 10; }
  .psw-company-intro__visual { max-width: 900px; }
  .psw-company-foundation__visual { max-width: 680px; }
  .psw-company-presence__visual { width: min(640px, 100%); margin-inline: auto; }
  .psw-company-team__content { padding-left: var(--psw-container-gutter); padding-right: var(--psw-container-gutter); }
  .psw-company-team__visual { width: calc(100% - (var(--psw-container-gutter) * 2)); min-height: 540px; margin-inline: auto; clip-path: none; }
  .psw-company-team__departments { max-width: 900px; }
  .psw-service-hero__content { padding-left: var(--psw-container-gutter); padding-right: var(--psw-container-gutter); }
  .psw-service-hero,
  .psw-service-hero__visual { min-height: 0; }
  .psw-service-hero__visual { width: calc(100% - (var(--psw-container-gutter) * 2)); min-height: 520px; margin-inline: auto; clip-path: none; }
  .psw-service-why__content::after { display: none; }
  .psw-service-why__content-inner { width: min(820px, calc(100% - 48px)); }
  .psw-service-why__visual { min-height: 500px; }

  .psw-company-vision__top {
    grid-template-columns: minmax(0, 1fr) minmax(0, .95fr);
    gap: 42px;
  }

  .psw-company-vision__values { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .psw-company-vision__value:nth-child(2) { border-right: 0; }

  .psw-company-cta__content::after { display: none; }
  .psw-company-cta__content-inner { width: min(760px, calc(100% - 48px)); }
  .psw-company-cta__visual { min-height: 520px; }
}

/* Tablet */
@media (max-width: 1024px) {
  .psw-company-vision__top { grid-template-columns: minmax(0, 1fr); }
  .psw-company-vision__media { max-width: 820px; }
  .psw-company-foundation__steps,
  .psw-company-presence__stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .psw-company-foundation__step:nth-child(2) { border-right: 0; }
  .psw-company-presence__stat + .psw-company-presence__stat { border-left: 1px solid var(--psw-border); }
  .psw-company-presence__stat:nth-child(3) { grid-column: 1 / -1; }
  .psw-company-team__departments { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .psw-company-team__department:nth-child(3) { grid-column: 1 / -1; }
  .psw-company-team__workforce { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .psw-company-team__workforce-item:nth-child(4) { border-right: 1px solid rgba(104, 112, 106, .28); }
  .psw-company-team__workforce-item:nth-child(3n) { border-right: 0; }
  .psw-company-team__closing { grid-column: span 2; }
  .psw-service-hero__trust { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .psw-service-why__benefits { max-width: 100%; }
}

/* Mobile Extra */
@media (max-width: 880px) {
  .psw-company-intro__signature,
  .psw-company-foundation__dots,
  .psw-company-presence::after,
  .psw-company-presence__markers,
  .psw-company-team__dots,
  .psw-company-cta__lines { display: none; }

  .psw-company-intro__services {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: -34px;
  }

  .psw-company-intro__visual { padding-bottom: 0; }
  .psw-company-foundation__visual { padding-left: 26px; }
  .psw-company-presence__visual { padding-bottom: 42px; }
  .psw-company-team__signature { right: 6%; bottom: 10%; }
  .psw-company-team__workforce-wrap { width: calc(100% - 36px); }
  .psw-company-team__workforce { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .psw-company-team__workforce-item:nth-child(3n) { border-right: 1px solid rgba(104, 112, 106, .28); }
  .psw-company-team__workforce-item:nth-child(2n) { border-right: 0; }
  .psw-company-team__closing { grid-column: 1 / -1; padding: 12px 8px 0; }
  .psw-service-hero__service-card { right: 20px; }
  .psw-service-why__badge { width: min(250px, 62%); }
  .psw-company-cta__quality-card { right: 24px; }
}

/* Mobile */
@media (max-width: 767px) {
  .psw-company-intro__title,
  .psw-company-foundation__title,
  .psw-company-presence__title,
  .psw-company-vision__title,
  .psw-company-cta__title {
    font-size: clamp(32px, 10vw, 46px);
  }

  .psw-company-team__title { font-size: clamp(32px, 10vw, 46px); }
  .psw-company-team__content { padding-block: 58px 42px; }
  .psw-company-team__departments,
  .psw-company-team__workforce { grid-template-columns: minmax(0, 1fr); }
  .psw-company-team__department:nth-child(3) { grid-column: auto; }
  .psw-company-team__visual { width: 100%; min-height: 380px; }
  .psw-company-team__signature { max-width: 170px; font-size: 20px; }
  .psw-company-team__workforce-wrap { margin-top: 18px; padding: 22px 18px; }
  .psw-company-team__workforce-item,
  .psw-company-team__workforce-item:nth-child(2n),
  .psw-company-team__workforce-item:nth-child(3n),
  .psw-company-team__workforce-item:nth-child(4) {
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(104, 112, 106, .28);
  }

  .psw-service-hero__title,
  .psw-service-why__title { font-size: clamp(32px, 10vw, 46px); }
  .psw-service-hero__content { padding-block: 52px 42px; }
  .psw-service-hero__actions { display: grid; }
  .psw-service-hero__actions .psw-btn { width: 100%; }
  .psw-service-hero__trust,
  .psw-service-why__benefits { grid-template-columns: minmax(0, 1fr); }
  .psw-service-hero__visual,
  .psw-service-why__visual { min-height: 380px; }
  .psw-service-hero__service-card { right: 0; bottom: 0; width: 100%; }
  .psw-service-why__content-inner { width: calc(100% - 36px); }
  .psw-service-why__badge { right: 18px; width: min(230px, 70%); padding: 26px 22px; }

  .psw-company-intro__breadcrumb { margin-bottom: 28px; }
  .psw-company-intro__media { aspect-ratio: 4 / 3; }
  .psw-company-intro__actions { display: grid; }
  .psw-company-intro__actions .psw-btn { width: 100%; }
  .psw-company-intro__services { padding: 24px 22px 24px 42px; }

  .psw-company-foundation__visual { padding: 24px 0 30px 18px; }
  .psw-company-foundation__media { width: 92%; }
  .psw-company-foundation__steps,
  .psw-company-vision__values,
  .psw-company-presence__stats { grid-template-columns: minmax(0, 1fr); }

  .psw-company-foundation__step,
  .psw-company-foundation__step:not(:last-child),
  .psw-company-vision__value,
  .psw-company-vision__value:not(:last-child) {
    padding: 0 0 26px;
    border-right: 0;
    border-bottom: 1px solid var(--psw-border);
  }

  .psw-company-vision__value,
  .psw-company-vision__value:not(:last-child) { border-color: rgba(255, 255, 255, .2); }
  .psw-company-presence__stat:nth-child(3) { grid-column: auto; }
  .psw-company-presence__stat + .psw-company-presence__stat { border-left: 1px solid var(--psw-border); }
  .psw-company-presence__map { aspect-ratio: 1 / 1; }
  .psw-company-presence__signature { right: 50%; transform: translateX(50%) rotate(-4deg); }

  .psw-company-cta__content-inner { width: calc(100% - 36px); }
  .psw-company-cta__visual { min-height: 380px; }
  .psw-company-cta__quality-card { right: 18px; width: 160px; padding: 22px 20px; }
  .psw-company-cta__button { width: 100%; }
}

@media (max-width: 1200px) {
  .psw-about__frame {
    grid-template-columns: minmax(0, 46%) minmax(0, 54%);
  }

  .psw-about__content {
    padding-inline: clamp(30px, 4vw, 58px);
  }

  .psw-about__title {
    font-size: clamp(40px, 4.5vw, 60px);
  }

  .psw-about__visual {
    padding-inline: clamp(24px, 3vw, 42px);
  }
}

@media (max-width: 1024px) {
  .psw-about {
    padding-block: clamp(60px, 8vw, 90px);
  }

  .psw-about__frame {
    grid-template-columns: minmax(0, 45%) minmax(0, 55%);
  }

  .psw-about__visual {
    padding-bottom: 100px;
  }

  .psw-about__vertical-copy {
    font-size: 9px;
    letter-spacing: 2px;
  }

  .psw-about__stat {
    width: min(330px, 88%);
    gap: 12px;
    padding: 18px;
  }

  .psw-about__stat::before {
    width: 36px;
    height: 44px;
  }

  .psw-about__stat-label {
    font-size: 11px;
  }

  .psw-about__feature {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .psw-about__feature-icon {
    width: 52px;
  }
}

@media (max-width: 880px) {
  .psw-about__frame {
    grid-template-columns: 1fr;
  }

  .psw-about__visual {
    min-height: 0;
    padding: 42px clamp(28px, 7vw, 74px) 112px;
  }

  .psw-about__image-wrap {
    max-width: 560px;
  }

  .psw-about__content {
    padding: 58px clamp(30px, 7vw, 82px) 68px;
  }

  .psw-about__title {
    max-width: 700px;
    font-size: clamp(42px, 6vw, 60px);
  }

  .psw-about__yellow-accent {
    right: 3%;
    bottom: 13%;
    height: 36%;
  }
}

@media (max-width: 767px) {
  .psw-about {
    padding-block: 52px;
  }

  .psw-about__visual {
    padding: 34px 18px 104px;
  }

  .psw-about__image-wrap {
    aspect-ratio: 4 / 3;
  }

  .psw-about__green-panel {
    width: 42%;
    height: 72%;
  }

  .psw-about__vertical-copy {
    top: 5%;
    left: 20px;
    font-size: 8px;
    letter-spacing: 1.5px;
  }

  .psw-about__bottom-copy {
    left: 22px;
    bottom: 20px;
    font-size: 8px;
    letter-spacing: 1.5px;
  }

  .psw-about__yellow-accent {
    right: 0;
    width: 76px;
    height: 34%;
  }

  .psw-about__stat {
    right: 14px;
    width: min(330px, calc(100% - 28px));
    min-height: 94px;
    padding: 15px 18px;
  }

  .psw-about__stat-number {
    font-size: 48px;
  }

  .psw-about__stat::before,
  .psw-about__dots {
    display: none;
  }

  .psw-about__content {
    padding: 44px 22px 48px;
  }

  .psw-about__eyebrow {
    gap: 12px;
    font-size: 10px;
    letter-spacing: 2px;
  }

  .psw-about__eyebrow::before {
    width: 34px;
  }

  .psw-about__title {
    font-size: clamp(38px, 11vw, 52px);
  }

  .psw-about__features {
    gap: 22px;
  }

  .psw-about__footer {
    align-items: stretch;
    gap: 28px;
  }

  .psw-about__cta {
    width: 100%;
  }

  .psw-about__signature {
    align-self: center;
    max-width: 260px;
  }
}

@media (max-width: 480px) {
  .psw-about__features {
    grid-template-columns: 1fr;
  }

  .psw-about__feature {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .psw-about__feature-icon {
    width: 54px;
  }

  .psw-about__vertical-copy {
    display: none;
  }
}
