:root {
  --ps-navy: #072d63;
  --ps-navy-deep: #052859;
  --ps-green: #49a83e;
  --ps-purple: #5c56ee;
  --ps-text: #0d2b55;
  --ps-muted: #65748b;
  --ps-line: #dfe6ee;
  --ps-white: #ffffff;
  --ps-container: 1350px;
  --ps-shadow: 0 18px 48px rgba(35, 49, 93, 0.12);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  color: var(--ps-text);
  background: var(--ps-white);
  font-family: 'Inter', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

img,
svg {
  display: block;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.ps-container {
  width: min(var(--ps-container), calc(100% - 48px));
  margin: 0 auto;
}

/* Header */
.ps-header {
  position: relative;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(220, 228, 239, 0.34);
}

.ps-header__inner {
  min-height: 92px;
  display: grid;
  grid-template-columns: 260px 1fr auto;
  align-items: center;
  gap: 30px;
}

.ps-brand {
  width: 235px;
  display: inline-flex;
  align-items: center;
}

.ps-brand img {
  width: 100%;
  height: auto;
}

.ps-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 56px;
  color: #263a59;
  font-size: 14px;
  font-weight: 600;
}

.ps-nav a {
  position: relative;
  padding: 35px 0;
  transition: color 180ms ease;
}

.ps-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 25px;
  height: 2px;
  border-radius: 999px;
  background: var(--ps-green);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.ps-nav a:hover {
  color: var(--ps-navy);
}

.ps-nav a:hover::after {
  transform: scaleX(1);
}

.ps-nav__dropdown {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ps-nav__dropdown svg {
  width: 15px;
  height: 15px;
}

.ps-header__cta {
  min-width: 146px;
  height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  background: var(--ps-navy);
  color: var(--ps-white);
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(7, 45, 99, 0.18);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.ps-header__cta svg {
  width: 18px;
  height: 18px;
}

.ps-header__cta:hover {
  background: #0b3c7f;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(7, 45, 99, 0.22);
}

.ps-menu-btn,
.ps-mobile-nav {
  display: none;
}

/* Hero */
.ps-hero {
  min-height: 630px;
  display: flex;
  align-items: center;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.97) 0%,
    rgba(255, 255, 255, 0.98) 47%,
    rgba(253, 253, 255, 0.97) 100%
  );
  overflow: hidden;
}

.ps-hero__grid {
  min-height: 630px;
  display: grid;
  grid-template-columns: 47% 53%;
  align-items: center;
}

.ps-hero__content {
  position: relative;
  z-index: 5;
  /* padding: 52px 0 48px 58px; */
}

.ps-eyebrow {
  margin-bottom: 17px;
  color: #7d8da2;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.ps-hero h1 {
  max-width: 620px;
  color: var(--ps-navy-deep);
  font-size: clamp(48px, 4vw, 61px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  font-weight: 800;
}

.ps-heading-line {
  display: inline-block;
  color: var(--ps-navy-deep);
  white-space: nowrap;
}

.ps-heading-line em {
  color: var(--ps-green);
  font-style: normal;
}

.ps-hero__description {
  margin-top: 24px;
  color: #66758b;
  font-size: 19px;
  line-height: 1.58;
  font-weight: 500;
}

.ps-hero__actions {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.ps-btn {
  height: 54px;
  border-radius: 8px;
  padding: 0 26px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 11px;
  font-size: 15px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease,
    border-color 180ms ease, color 180ms ease;
}

.ps-btn svg {
  width: 19px;
  height: 19px;
}

.ps-btn--primary {
  min-width: 174px;
  color: var(--ps-white);
  background: var(--ps-navy);
  box-shadow: 0 12px 26px rgba(7, 45, 99, 0.18);
}

.ps-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(7, 45, 99, 0.24);
}

.ps-btn--secondary {
  min-width: 225px;
  color: #fff;
  background: #558031;
  border: 1px solid #dce4ed;
  box-shadow: 0 8px 20px rgba(24, 51, 86, 0.035);
}

.ps-btn--secondary:hover {
  color: var(--ps-navy);
  border-color: #c5d1df;
  transform: translateY(-2px);
}

.ps-trust-row {
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 590px;
}

.ps-trust-item {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.ps-trust-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ps-trust-icon svg {
  width: 23px;
  height: 23px;
}

.ps-trust-icon--green {
  color: #fff;
  background: #3db957;
  box-shadow: 0 8px 18px rgba(61, 185, 87, 0.2);
}

.ps-trust-icon--purple {
  color: #5d56ee;
  background: #efedff;
}

.ps-trust-icon--blue {
  color: #5d56ee;
  background: #eeefff;
}

.ps-trust-item > span:last-child {
  display: grid;
  gap: 4px;
}

.ps-trust-item strong {
  color: #263956;
  font-size: 12.5px;
  line-height: 1.25;
  font-weight: 700;
  white-space: nowrap;
}

.ps-trust-item small {
  color: #7d8a9b;
  font-size: 11px;
  line-height: 1.25;
  font-weight: 500;
  white-space: nowrap;
}

/* Hero visual */
.ps-hero__visual {
  position: relative;
  min-height: 630px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ps-blob {
  position: absolute;
  width: 720px;
  height: 540px;
  right: -50px;
  top: 48px;
  border-radius: 46% 54% 52% 48% / 41% 43% 57% 59%;
  background: radial-gradient(
      circle at 68% 78%,
      rgba(104, 89, 241, 0.22),
      transparent 30%
    ),
    linear-gradient(135deg, #f5f3ff 5%, #eeeaff 58%, #f9f8ff 100%);
  transform: rotate(-2deg);
}

.ps-dot-pattern {
  position: absolute;
  width: 175px;
  height: 240px;
  right: -4px;
  bottom: 70px;
  opacity: 0.32;
  background-image: radial-gradient(#a9a0ee 1px, transparent 1.2px);
  background-size: 13px 13px;
  mask-image: linear-gradient(to left, #000, transparent);
}

.ps-dashboard-wrap {
  position: relative;
  z-index: 3;
  width: min(690px, 97%);
  margin-top: 12px;
  transform: translateX(-6px);
}

.ps-dashboard-img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 26px 36px rgba(52, 58, 112, 0.15));
}

.ps-verified-card {
  position: absolute;
  z-index: 6;
  right: 18px;
  bottom: 62px;
  min-width: 248px;
  padding: 20px 22px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(227, 232, 240, 0.86);
  box-shadow: 0 16px 40px rgba(45, 52, 105, 0.12);
  backdrop-filter: blur(8px);
}

.ps-verified-card__icon {
  width: 45px;
  height: 45px;
  flex: 0 0 45px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #3db957;
  box-shadow: 0 10px 22px rgba(61, 185, 87, 0.24);
}

.ps-verified-card__icon svg {
  width: 25px;
  height: 25px;
}

.ps-verified-card strong {
  display: block;
  margin-bottom: 5px;
  color: #2b3b54;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
}

.ps-verified-card p {
  color: #7b8799;
  font-size: 11.5px;
  line-height: 1.4;
  font-weight: 500;
}

/* Shared section heading */
.ps-section-heading h2 {
  color: var(--ps-navy-deep);
  font-size: clamp(34px, 3vw, 44px);
  line-height: 1.14;
  letter-spacing: -0.035em;
  font-weight: 800;
}

.ps-section-heading h2 span {
  color: var(--ps-green);
}

.ps-section-heading p {
  margin-top: 11px;
  color: #69778d;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 500;
}

.ps-section-heading--center {
  text-align: center;
}

/* Job categories */
.ps-categories {
  position: relative;
  padding: 72px 0 76px;
  overflow: hidden;
  background: radial-gradient(
      circle at 3% 90%,
      rgba(96, 82, 238, 0.08) 0,
      rgba(96, 82, 238, 0.08) 58px,
      transparent 59px
    ),
    radial-gradient(
      circle at 97% 5%,
      rgba(92, 86, 238, 0.12) 1.1px,
      transparent 1.3px
    ),
    #fff;
  background-size: auto, 13px 13px, auto;
}

.ps-category-grid {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}

.ps-category-card {
  --card-accent: #3478de;
  --card-soft: #f0f6ff;
  min-height: 264px;
  padding: 31px 30px 27px;
  border: 1px solid rgba(222, 229, 239, 0.9);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: radial-gradient(
      circle at 84% 8%,
      rgba(255, 255, 255, 0.94),
      transparent 38%
    ),
    linear-gradient(145deg, #ffffff 0%, var(--card-soft) 100%);
  box-shadow: 0 14px 34px rgba(38, 57, 99, 0.065),
    inset 0 0 0 5px rgba(255, 255, 255, 0.64);
  transition: transform 220ms ease, box-shadow 220ms ease,
    border-color 220ms ease;
}

.ps-category-card:hover {
  transform: translateY(-7px);
  border-color: color-mix(in srgb, var(--card-accent) 22%, #dce5ef);
  box-shadow: 0 22px 44px rgba(38, 57, 99, 0.11),
    inset 0 0 0 5px rgba(255, 255, 255, 0.72);
}

.ps-category-card--blue {
  --card-accent: #3478de;
  --card-soft: #edf5ff;
}

.ps-category-card--purple {
  --card-accent: #6b50ee;
  --card-soft: #f4f0ff;
}

.ps-category-card--green {
  --card-accent: #2eaa4a;
  --card-soft: #effaf1;
}

.ps-category-card--orange {
  --card-accent: #f06b32;
  --card-soft: #fff3ec;
}

.ps-category-card__icon {
  width: 51px;
  height: 51px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--card-accent);
}

.ps-category-card__icon svg {
  width: 48px;
  height: 48px;
}

.ps-category-card h3 {
  margin-top: 16px;
  color: #0a2d60;
  font-size: 19px;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.ps-category-card p {
  max-width: 230px;
  margin-top: 10px;
  color: #66758b;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 500;
}

.ps-category-card a {
  margin-top: auto;
  padding-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--card-accent);
  font-size: 13.5px;
  line-height: 1;
  font-weight: 800;
}

.ps-category-card a span {
  font-size: 19px;
  line-height: 1;
  transition: transform 180ms ease;
}

.ps-category-card a:hover span {
  transform: translateX(4px);
}

/* How PrismStone works */
.ps-process {
  padding: 69px 0 67px;
  border-top: 1px solid #eef2f7;
  border-bottom: 1px solid #eef2f7;
  background: linear-gradient(
    180deg,
    rgba(253, 254, 255, 0.97),
    rgba(255, 255, 255, 1)
  );
}

.ps-process__heading {
  margin-bottom: 39px;
}

.ps-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 52px;
}

.ps-process-step {
  --step-accent: #3478de;
  --step-soft: #edf5ff;
  position: relative;
  min-width: 0;
  text-align: center;
}

.ps-process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  z-index: 0;
  top: 40px;
  left: calc(50% + 58px);
  width: calc(100% - 64px + 52px);
  height: 2px;
  background-image: linear-gradient(90deg, #aebbd0 45%, transparent 45%);
  background-size: 8px 2px;
  background-repeat: repeat-x;
  opacity: 0.85;
}

.ps-process-step:not(:last-child)::before {
  content: '';
  position: absolute;
  z-index: 2;
  top: 36.5px;
  right: -30px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #aebbd0;
  box-shadow: calc(-1 * (100% + 97px)) 0 0 #aebbd0;
}

.ps-process-step--blue {
  --step-accent: #3478de;
  --step-soft: #edf5ff;
}

.ps-process-step--purple {
  --step-accent: #6b50ee;
  --step-soft: #f3efff;
}

.ps-process-step--green {
  --step-accent: #2eaa4a;
  --step-soft: #eefaf1;
}

.ps-process-step--orange {
  --step-accent: #f06b32;
  --step-soft: #fff2eb;
}

.ps-process-step__top {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
}

.ps-process-step__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--step-accent);
  background: var(--step-soft);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.75);
}

.ps-process-step__icon svg {
  width: 42px;
  height: 42px;
}

.ps-process-step__number {
  display: block;
  margin-top: 13px;
  color: #7b899c;
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
}

.ps-process-step h3 {
  min-height: 46px;
  margin-top: 11px;
  color: #0b2e61;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: -0.015em;
}

.ps-process-step p {
  max-width: 220px;
  margin: 9px auto 0;
  color: #68778d;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 500;
}

/* Featured opportunities */
.ps-featured {
  padding: 69px 0 86px;
  background: radial-gradient(
      circle at 12% 0%,
      rgba(94, 86, 238, 0.04),
      transparent 24%
    ),
    #fbfcff;
}

.ps-featured__head {
  position: relative;
}

.ps-view-all {
  position: absolute;
  right: 0;
  top: 13px;
  min-width: 153px;
  height: 45px;
  padding: 0 17px;
  border: 1px solid #dbe3ed;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #17345e;
  background: #fff;
  box-shadow: 0 8px 18px rgba(32, 56, 88, 0.035);
  font-size: 13px;
  line-height: 1;
  font-weight: 750;
  transition: transform 180ms ease, border-color 180ms ease,
    box-shadow 180ms ease;
}

.ps-view-all svg {
  width: 17px;
  height: 17px;
}

.ps-view-all:hover {
  transform: translateY(-2px);
  border-color: #c8d4e3;
  box-shadow: 0 11px 24px rgba(32, 56, 88, 0.08);
}

.ps-job-grid {
  margin-top: 41px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.ps-job-card {
  min-width: 0;
  min-height: 342px;
  padding: 24px 22px 19px;
  border: 1px solid #e0e7ef;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  background: #fff;
  box-shadow: 0 11px 28px rgba(39, 58, 98, 0.055);
  transition: transform 220ms ease, box-shadow 220ms ease,
    border-color 220ms ease;
}

.ps-job-card:hover {
  transform: translateY(-6px);
  border-color: #d1dce8;
  box-shadow: 0 20px 40px rgba(39, 58, 98, 0.1);
}

.ps-job-card__logo {
  height: 42px;
  display: flex;
  align-items: center;
}

.ps-job-card__logo svg {
  max-width: 100%;
  height: 40px;
}

.ps-logo--tp svg {
  width: 76px;
}

.ps-logo--exl {
  color: #ef5b2a;
  font-family: Arial, sans-serif;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.07em;
}

.ps-logo--concentrix svg {
  width: 130px;
}

.ps-logo--genpact svg {
  width: 120px;
}

.ps-job-card h3 {
  margin-top: 13px;
  color: #0c2f61;
  font-size: 16.5px;
  line-height: 1.34;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.ps-job-card__company {
  margin-top: 5px;
  color: #79869a;
  font-size: 12.5px;
  line-height: 1.35;
  font-weight: 500;
}

.ps-job-tag {
  align-self: flex-start;
  margin-top: 14px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 10.5px;
  line-height: 1;
  font-weight: 700;
}

.ps-job-tag--green {
  color: #289344;
  background: #eaf8ed;
}

.ps-job-tag--purple {
  color: #5b55df;
  background: #efefff;
}

.ps-job-card__salary {
  margin-top: 15px;
  color: #15345d;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 800;
}

.ps-job-card__salary span {
  font-size: 12px;
  font-weight: 650;
}

.ps-job-card__meta {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #76859a;
  font-size: 10.5px;
  line-height: 1;
  font-weight: 500;
}

.ps-job-card__meta span {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.ps-job-card__meta svg {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
}

.ps-job-card__button {
  width: 100%;
  height: 42px;
  margin-top: auto;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(90deg, #072d63, #043778);
  box-shadow: 0 8px 18px rgba(7, 45, 99, 0.16);
  font-size: 13px;
  line-height: 1;
  font-weight: 750;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.ps-job-card__button:hover {
  transform: translateY(-2px);
  background: linear-gradient(90deg, #0a397a, #06458f);
  box-shadow: 0 11px 22px rgba(7, 45, 99, 0.22);
}

.ps-placeholder {
  height: 1px;
}

@media (max-width: 1240px) {
  .ps-header__inner {
    grid-template-columns: 220px 1fr auto;
  }

  .ps-brand {
    width: 205px;
  }

  .ps-nav {
    gap: 35px;
  }

  .ps-hero__content {
    padding-left: 22px;
  }

  .ps-hero h1 {
    font-size: clamp(46px, 4.4vw, 58px);
  }

  .ps-trust-row {
    gap: 12px;
  }

  .ps-blob {
    width: 650px;
    right: -90px;
  }

  .ps-verified-card {
    right: 0;
  }
}

@media (max-width: 1024px) {
  .ps-header__inner {
    min-height: 80px;
    grid-template-columns: 1fr auto;
  }

  .ps-brand {
    width: 200px;
  }

  .ps-nav,
  .ps-header__cta {
    display: none;
  }

  .ps-menu-btn {
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 8px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: var(--ps-navy);
    cursor: pointer;
  }

  .ps-menu-btn span {
    width: 19px;
    height: 2px;
    border-radius: 999px;
    background: #fff;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .ps-menu-btn.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .ps-menu-btn.is-open span:nth-child(2) {
    opacity: 0;
  }

  .ps-menu-btn.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .ps-mobile-nav {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    padding: 12px 24px 24px;
    display: grid;
    gap: 4px;
    background: #fff;
    border-top: 1px solid #edf1f6;
    border-bottom: 1px solid #e5ebf2;
    box-shadow: 0 18px 35px rgba(16, 41, 74, 0.1);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .ps-mobile-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .ps-mobile-nav a {
    padding: 13px 8px;
    color: #243a5c;
    font-size: 14px;
    font-weight: 600;
  }

  .ps-mobile-nav__cta {
    margin-top: 8px;
    border-radius: 8px;
    text-align: center;
    color: #fff !important;
    background: var(--ps-navy);
  }

  .ps-hero,
  .ps-hero__grid,
  .ps-hero__visual {
    min-height: auto;
  }

  .ps-hero__grid {
    grid-template-columns: 1fr;
  }

  .ps-hero__content {
    padding: 74px 12px 42px;
    text-align: center;
  }

  .ps-hero h1,
  .ps-trust-row {
    margin-left: auto;
    margin-right: auto;
  }

  .ps-hero__actions,
  .ps-trust-row {
    justify-content: center;
  }

  .ps-hero__visual {
    min-height: 560px;
  }

  .ps-dashboard-wrap {
    width: min(720px, 92%);
    transform: none;
  }

  .ps-blob {
    width: 780px;
    max-width: 100vw;
    right: 50%;
    transform: translateX(50%);
    top: 18px;
  }

  .ps-verified-card {
    right: 8%;
    bottom: 38px;
  }
}

@media (max-width: 720px) {
  .ps-container {
    width: min(100% - 28px, var(--ps-container));
  }

  .ps-header__inner {
    min-height: 72px;
  }

  .ps-mobile-nav {
    top: 72px;
  }

  .ps-brand {
    width: 172px;
  }

  .ps-menu-btn {
    width: 42px;
    height: 42px;
  }

  .ps-hero__content {
    padding: 58px 2px 28px;
  }

  .ps-eyebrow {
    font-size: 10px;
  }

  .ps-hero h1 {
    font-size: clamp(39px, 11.5vw, 54px);
    line-height: 1.1;
  }

  .ps-hero__description {
    margin-top: 18px;
    font-size: 16px;
  }

  .ps-desktop-break {
    display: none;
  }

  .ps-hero__actions {
    margin-top: 28px;
    flex-direction: column;
    gap: 12px;
  }

  .ps-btn {
    width: min(100%, 330px);
  }

  .ps-trust-row {
    margin-top: 40px;
    max-width: 330px;
    grid-template-columns: 1fr;
    gap: 15px;
    text-align: left;
  }

  .ps-trust-item {
    justify-content: flex-start;
  }

  .ps-hero__visual {
    min-height: 430px;
    margin-top: 2px;
  }

  .ps-dashboard-wrap {
    width: 106%;
  }

  .ps-blob {
    width: 600px;
    height: 390px;
    top: 8px;
  }

  .ps-dot-pattern {
    display: none;
  }

  .ps-verified-card {
    right: 2px;
    bottom: 20px;
    min-width: 205px;
    padding: 14px 15px;
    gap: 11px;
  }

  .ps-verified-card__icon {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .ps-verified-card strong {
    font-size: 12px;
  }

  .ps-verified-card p {
    font-size: 9.8px;
  }
}

/* Responsive rules for the added sections */
@media (max-width: 1240px) {
  .ps-category-grid {
    gap: 18px;
  }

  .ps-category-card {
    padding-left: 24px;
    padding-right: 24px;
  }

  .ps-process-grid {
    gap: 34px;
  }

  .ps-process-step:not(:last-child)::after {
    width: calc(100% - 82px);
  }

  .ps-process-step:not(:last-child)::before {
    display: none;
  }

  .ps-job-grid {
    gap: 15px;
  }

  .ps-job-card {
    padding-left: 18px;
    padding-right: 18px;
  }

  .ps-job-card h3 {
    font-size: 15.5px;
  }
}

@media (max-width: 1024px) {
  .ps-categories,
  .ps-process,
  .ps-featured {
    padding-top: 62px;
    padding-bottom: 66px;
  }

  .ps-category-grid,
  .ps-job-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ps-category-card {
    min-height: 250px;
  }

  .ps-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 44px;
  }

  .ps-process-step::after,
  .ps-process-step::before {
    display: none !important;
  }

  .ps-featured__head {
    display: grid;
    justify-items: center;
  }

  .ps-view-all {
    position: static;
    margin-top: 22px;
  }

  .ps-job-card {
    min-height: 330px;
  }
}

@media (max-width: 720px) {
  .ps-section-heading h2 {
    font-size: clamp(30px, 9vw, 38px);
  }

  .ps-section-heading p {
    font-size: 14px;
  }

  .ps-categories,
  .ps-process,
  .ps-featured {
    padding-top: 50px;
    padding-bottom: 54px;
  }

  .ps-category-grid,
  .ps-process-grid,
  .ps-job-grid {
    grid-template-columns: 1fr;
  }

  .ps-category-grid {
    margin-top: 34px;
    gap: 16px;
  }

  .ps-category-card {
    min-height: 238px;
    padding: 27px 25px 24px;
  }

  .ps-category-card p {
    max-width: none;
  }

  .ps-process__heading {
    margin-bottom: 34px;
  }

  .ps-process-grid {
    gap: 34px;
  }

  .ps-process-step {
    padding-bottom: 2px;
  }

  .ps-process-step__icon {
    width: 72px;
    height: 72px;
  }

  .ps-process-step__icon svg {
    width: 38px;
    height: 38px;
  }

  .ps-process-step h3 {
    min-height: auto;
  }

  .ps-process-step p {
    max-width: 280px;
  }

  .ps-job-grid {
    margin-top: 32px;
    gap: 16px;
  }

  .ps-job-card {
    min-height: 330px;
    padding: 23px 21px 18px;
  }

  .ps-view-all {
    width: min(100%, 230px);
  }
}
.psb-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.psb-heading--center {
  text-align: center;
}

.psb-heading h2 {
  color: var(--ps-navy-deep);
  font-size: 35px;
  line-height: 1.16;
  font-weight: 800;
  letter-spacing: -0.038em;
}

.psb-heading h2 span {
  color: var(--ps-green);
}

.psb-heading p {
  margin-top: 9px;
  color: #66758b;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 500;
}

/* Why choose us */
.psb-why {
  position: relative;
  padding: 42px 0 0px;
  background: radial-gradient(
      circle at 4% 6%,
      rgba(101, 83, 238, 0.055),
      transparent 22%
    ),
    linear-gradient(180deg, #fff 0%, #fefeff 100%);
  border-top: 1px solid #eef2f7;
  margin-bottom: 60px;
}

.psb-benefit-grid {
  width: min(1350px, 100%);
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.psb-benefit-card {
  min-height: 142px;
  padding: 25px 21px;
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid #e8edf4;
  border-radius: 13px;
  box-shadow: 0 10px 28px rgba(27, 49, 86, 0.055);
  transition: transform 180ms ease, box-shadow 180ms ease,
    border-color 180ms ease;
}

.psb-benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(27, 49, 86, 0.09);
  border-color: #dce5ef;
}

.psb-benefit-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.psb-benefit-icon svg {
  width: 31px;
  height: 31px;
}

.psb-benefit-card--purple .psb-benefit-icon {
  color: #6759e8;
  background: #f0edff;
}

.psb-benefit-card--green .psb-benefit-icon {
  color: #4ab343;
  background: #edf9eb;
}

.psb-benefit-card--blue .psb-benefit-icon {
  color: #4b82d1;
  background: #edf4ff;
}

.psb-benefit-card--lavender .psb-benefit-icon {
  color: #8c5bdd;
  background: #f6efff;
}

.psb-benefit-card h3 {
  color: #213653;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 800;
}

.psb-benefit-card p {
  margin-top: 8px;
  color: #69778b;
  font-size: 11.4px;
  line-height: 1.55;
  font-weight: 500;
}

/* Partners */
.psb-partners {
  padding: 50px 0px;
  background: radial-gradient(
      circle at 4% 6%,
      rgba(101, 83, 238, 0.055),
      transparent 22%
    ),
    linear-gradient(180deg, #fff 0%, #fefeff 100%);
  border-top: 1px solid #f0f3f7;
  border-bottom: 1px solid #f0f3f7;
  margin-bottom: 60px;
}

.psb-partner-shell {
  width: min(1350px, 100%);
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: 38px 1fr 38px;
  align-items: center;
  gap: 18px;
}

.psb-partner-arrow {
  width: 34px;
  height: 34px;
  border: 1px solid #dce4ed;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #9ba8ba;
  background: #fff;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
  transition: color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.psb-partner-arrow:hover {
  color: var(--ps-navy);
  border-color: #bccbda;
  transform: translateY(-1px);
}

.psb-partner-row {
  display: grid;
  grid-template-columns: 1.25fr 1.35fr 0.72fr 1.1fr 0.8fr 0.78fr;
  align-items: center;
  gap: 31px;
}

.psb-partner-logo {
  min-width: 0;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #143a6a;
  filter: saturate(0.94);
}

.psb-partner-logo svg {
  width: 100%;
  max-height: 48px;
}

.psb-partner-logo--tp {
  justify-content: flex-start;
  gap: 8px;
  color: #202c43;
}

.psb-tp-mark {
  color: #ba2b9c;
  font-size: 40px;
  line-height: 1;
  font-weight: 900;
  font-family: Arial, sans-serif;
  transform: skew(-8deg);
}

.psb-partner-logo--tp span:last-child {
  display: grid;
  gap: 0;
}

.psb-partner-logo--tp strong {
  color: #202c43;
  font-size: 14px;
  letter-spacing: -0.03em;
}

.psb-partner-logo--tp small {
  color: #8b8f99;
  font-size: 7px;
}

.psb-partner-logo--exl {
  color: #f05a2b;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.psb-partner-logo--wipro {
  position: relative;
  min-height: 62px;
  flex-direction: column;
  gap: 1px;
}

.psb-wipro-ring {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: radial-gradient(circle at center, #fff 0 42%, transparent 43%),
    conic-gradient(#ef5676, #f5a33b, #58bc55, #25a4c7, #6558e8, #ef5676);
  opacity: 0.92;
}

.psb-partner-logo--wipro strong {
  margin-top: -21px;
  color: #17375f;
  font-size: 14px;
  font-weight: 700;
  z-index: 1;
}

.psb-partner-logo--hgs em {
  color: #183c72;
  font-family: Arial, sans-serif;
  font-size: 29px;
  line-height: 1;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.06em;
}

/* ==========================================
   PRISMSTONE TESTIMONIAL SLIDER
========================================== */

.psTesti91-section {
  width: 100%;
  padding: 70px 24px 55px;
  background: radial-gradient(
      circle at 90% 10%,
      rgba(105, 91, 255, 0.07),
      transparent 24%
    ),
    #ffffff;
  overflow: hidden;
  font-family: 'Poppins', Arial, sans-serif;
}

.psTesti91-container {
  width: 100%;
  max-width: 1350px;
  margin: 0 auto;
}

.psTesti91-headingBox {
  text-align: center;
  margin-bottom: 36px;
}

.psTesti91-heading {
  margin: 0;
  color: #06265a;
  font-size: clamp(32px, 3vw, 46px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -1.5px;
}

.psTesti91-heading span {
  color: #3daf4a;
}

/* Main Slider */

.psTesti91-slider {
  position: relative;
  width: 100%;
}

.psTesti91-viewport {
  width: 100%;
  overflow: hidden;
  padding: 5px;
}

.psTesti91-track {
  display: flex;
  align-items: stretch;
  gap: 22px;
  width: max-content;
  transform: translateX(0);
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

/* Testimonial Card */

.psTesti91-card {
  flex: 0 0 calc((1350px - 44px) / 3);
  min-height: 220px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 30px 26px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid #e0e7f1;
  border-radius: 15px;
  box-shadow: 0 9px 28px rgba(8, 39, 89, 0.055),
    0 2px 6px rgba(8, 39, 89, 0.025);
  box-sizing: border-box;
  transition: transform 0.35s ease, box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.psTesti91-card:hover {
  transform: translateY(-5px);
  border-color: rgba(76, 92, 226, 0.23);
  box-shadow: 0 18px 40px rgba(8, 39, 89, 0.1), 0 4px 10px rgba(8, 39, 89, 0.04);
}

/* Avatar */

.psTesti91-avatar {
  width: 74px;
  height: 74px;
  min-width: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 7px 18px rgba(6, 38, 90, 0.1);
}

.psTesti91-avatar::before {
  content: '';
  position: absolute;
  width: 52px;
  height: 52px;
  bottom: -23px;
  border-radius: 50% 50% 0 0;
  background: rgba(255, 255, 255, 0.38);
}

.psTesti91-avatar span {
  position: relative;
  z-index: 2;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.psTesti91-avatar--pink {
  background: linear-gradient(145deg, #f48ca3, #d94969);
}

.psTesti91-avatar--blue {
  background: linear-gradient(145deg, #79b9ef, #245b9a);
}

.psTesti91-avatar--orange {
  background: linear-gradient(145deg, #ffc28d, #e4774f);
}

.psTesti91-avatar--purple {
  background: linear-gradient(145deg, #b899ef, #6950b8);
}

.psTesti91-avatar--green {
  background: linear-gradient(145deg, #81d8a1, #2c9d61);
}

.psTesti91-avatar--yellow {
  background: linear-gradient(145deg, #f5cf70, #db8f28);
}

/* Card Content */

.psTesti91-content {
  flex: 1;
  min-width: 0;
}

.psTesti91-quote {
  height: 30px;
  color: #d4dbea;
  font-family: Georgia, serif;
  font-size: 52px;
  line-height: 0.75;
  font-weight: 700;
  user-select: none;
}

.psTesti91-review {
  min-height: 76px;
  margin: 7px 0 20px;
  color: #536b8b;
  font-size: 14px;
  line-height: 1.75;
  font-weight: 400;
}

.psTesti91-person {
  padding-top: 14px;
  border-top: 1px solid #edf1f7;
}

.psTesti91-person h3 {
  margin: 0 0 3px;
  color: #082958;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
}

.psTesti91-person p {
  margin: 0;
  color: #8291a9;
  font-size: 12px;
  line-height: 1.5;
}

/* Arrow Buttons */

.psTesti91-arrow {
  width: 42px;
  height: 42px;
  padding: 0;
  position: absolute;
  top: 50%;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  background: #ffffff;
  color: #082958;
  border: 1px solid #dfe6f0;
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(8, 41, 88, 0.12);
  font-size: 17px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.psTesti91-arrow:hover {
  background: #082958;
  color: #ffffff;
}

.psTesti91-arrow--left {
  left: -18px;
}

.psTesti91-arrow--right {
  right: -18px;
}

/* Slider Dots */

.psTesti91-dots {
  min-height: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 25px;
}

.psTesti91-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  background: #d7dce7;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease;
}

.psTesti91-dot.psTesti91-dot--active {
  width: 26px;
  background: linear-gradient(90deg, #604fee, #7968f3);
}

/* ==========================================
   TABLET
========================================== */

@media (max-width: 1100px) {
  .psTesti91-section {
    padding: 60px 30px 50px;
  }

  .psTesti91-card {
    min-height: 230px;
  }

  .psTesti91-arrow--left {
    left: -14px;
  }

  .psTesti91-arrow--right {
    right: -14px;
  }
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {
  .psTesti91-section {
    padding: 48px 16px 42px;
  }

  .psTesti91-headingBox {
    margin-bottom: 25px;
  }

  .psTesti91-heading {
    font-size: 30px;
    letter-spacing: -0.8px;
  }

  .psTesti91-viewport {
    padding: 4px;
  }

  .psTesti91-track {
    gap: 15px;
  }

  .psTesti91-card {
    min-height: 250px;
    padding: 25px 20px;
    gap: 15px;
    border-radius: 14px;
  }

  .psTesti91-avatar {
    width: 62px;
    height: 62px;
    min-width: 62px;
  }

  .psTesti91-avatar span {
    font-size: 17px;
  }

  .psTesti91-review {
    min-height: 100px;
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 15px;
  }

  .psTesti91-arrow {
    display: none;
  }

  .psTesti91-dots {
    margin-top: 20px;
  }
}

@media (max-width: 430px) {
  .psTesti91-card {
    flex-direction: column;
    min-height: 295px;
  }

  .psTesti91-review {
    min-height: auto;
  }
}

/* CTA */
.psb-cta {
  padding: 0 0 16px;
  background: #fff;
  margin: 50px 0px;
}

.psb-cta-box {
  min-height: 132px;
  padding: 25px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border-radius: 13px;
  color: #fff;
  background: radial-gradient(
      circle at 62% 22%,
      rgba(49, 92, 168, 0.26),
      transparent 30%
    ),
    linear-gradient(105deg, #052d67 0%, #062b61 56%, #07356d 100%);
  box-shadow: 0 15px 34px rgba(5, 45, 99, 0.15);
}

.psb-cta-copy {
  display: flex;
  align-items: center;
  gap: 24px;
}

.psb-cta-icon {
  width: 74px;
  height: 74px;
  flex: 0 0 74px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #5d5ce7;
  background: #fff;
  box-shadow: 0 8px 22px rgba(3, 20, 49, 0.14);
}

.psb-cta-icon svg {
  width: 39px;
  height: 39px;
}

.psb-cta-copy h2 {
  color: #fff;
  font-size: 31px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.psb-cta-copy h2 span {
  color: #55ae42;
}

.psb-cta-copy p {
  margin-top: 7px;
  color: #d6e0ee;
  font-size: 13.5px;
  line-height: 1.45;
  font-weight: 500;
}

.psb-cta-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.psb-cta-btn {
  min-width: 168px;
  height: 52px;
  padding: 0 24px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13.5px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.psb-cta-btn:hover {
  transform: translateY(-2px);
}

.psb-cta-btn--light {
  color: #213957;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.13);
}

.psb-cta-btn--green {
  color: #fff;
  background: #54ad3e;
  box-shadow: 0 8px 20px rgba(29, 128, 41, 0.22);
}

/* Footer */
.psb-footer {
  position: relative;
  padding: 35px 0 0;
  color: #dbe6f2;
  background: radial-gradient(
      circle at 90% 10%,
      rgba(29, 76, 142, 0.23),
      transparent 28%
    ),
    linear-gradient(110deg, #052d67 0%, #05285a 58%, #062b60 100%);
}

.psb-footer-grid {
  display: grid;
  grid-template-columns: 1.42fr 0.78fr 0.85fr 1.2fr;
  gap: 45px;
  padding-bottom: 31px;
}

.psb-footer-logo {
  width: 205px;
  display: inline-flex;
  filter: brightness(0) invert(1);
}

.psb-footer-logo img {
  width: 100%;
  height: auto;
}

.psb-footer-brand > p {
  max-width: 245px;
  margin-top: 14px;
  color: #c7d3e1;
  font-size: 15px;
  line-height: 1.62;
  font-weight: 500;
}

.psb-socials {
  margin-top: 17px;
  display: flex;
  gap: 10px;
}

.psb-socials a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  transition: background 160ms ease, border-color 160ms ease;
}

.psb-socials a:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.psb-footer h3 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 600;
}

.psb-footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.psb-footer-column a {
  margin-bottom: 9px;
  color: #c9d5e3;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 500;
  transition: color 160ms ease, transform 160ms ease;
}

.psb-footer-column a:hover {
  color: #fff;
  transform: translateX(2px);
}

.psb-footer-newsletter p {
  max-width: 230px;
  color: #c9d5e3;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 500;
}

.psb-newsletter-form {
  margin-top: 13px;
  display: grid;
  gap: 8px;
}

.psb-newsletter-form input {
  width: 100%;
  height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 5px;
  color: #fff;
  outline: none;
  background: rgba(2, 29, 67, 0.4);
  font-family: inherit;
  font-size: 11px;
}

.psb-newsletter-form input::placeholder {
  color: #9fb0c5;
}

.psb-newsletter-form input:focus {
  border-color: rgba(116, 109, 255, 0.85);
  box-shadow: 0 0 0 3px rgba(92, 86, 238, 0.15);
}

.psb-newsletter-form button {
  height: 40px;
  border: 0;
  border-radius: 5px;
  color: #fff;
  background: linear-gradient(90deg, #6253e7, #7064f2);
  font-family: inherit;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.psb-footer-bottom {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.psb-footer-bottom p,
.psb-footer-bottom a {
  color: #aebed0;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
}

.psb-footer-bottom div {
  display: flex;
  align-items: center;
  gap: 48px;
}

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

.partner-logo {
  width: 80px;
}

.partner-logo .wns-logo {
  width: 100%;
}

@media (max-width: 1180px) {
  .psb-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .psb-partner-row {
    gap: 18px;
  }

  .psb-partner-logo--tp strong {
    font-size: 12px;
  }

  .psb-footer-grid {
    grid-template-columns: 1.35fr repeat(3, 0.8fr) 1.15fr;
    gap: 26px;
  }
}

@media (max-width: 960px) {
  .psb-partner-shell {
    grid-template-columns: 32px 1fr 32px;
    gap: 10px;
  }

  .psb-partner-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 15px;
  }

  .psb-testimonial-grid {
    grid-template-columns: 1fr;
    width: min(650px, 100%);
  }

  .psb-testimonial-card {
    min-height: 172px;
  }

  .psb-testimonial-content p {
    min-height: auto;
  }

  .psb-cta-box {
    padding: 28px 30px;
    align-items: flex-start;
    flex-direction: column;
  }

  .psb-cta-actions {
    width: 100%;
  }

  .psb-cta-btn {
    flex: 1;
  }

  .psb-footer-grid {
    grid-template-columns: 1.25fr repeat(2, 1fr);
  }

  .psb-footer-newsletter {
    grid-column: span 2;
  }
}

@media (max-width: 720px) {
  .psb-heading h2 {
    font-size: 29px;
  }

  .psb-why {
    padding: 45px 0 47px;
  }

  .psb-benefit-grid {
    grid-template-columns: 1fr;
    margin-top: 25px;
    gap: 14px;
  }

  .psb-benefit-card {
    min-height: 128px;
    padding: 21px 18px;
    grid-template-columns: 52px 1fr;
    gap: 14px;
  }

  .psb-benefit-icon {
    width: 50px;
    height: 50px;
  }

  .psb-partners {
    padding: 34px 0 42px;
  }

  .psb-partner-shell {
    margin-top: 23px;
    grid-template-columns: 1fr;
  }

  .psb-partner-arrow {
    display: none;
  }

  .psb-partner-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 22px;
  }

  .psb-partner-logo {
    min-height: 54px;
  }

  .psb-testimonials {
    padding: 42px 0 32px;
  }

  .psb-testimonial-card {
    padding: 21px 18px;
    grid-template-columns: 62px 1fr;
    gap: 14px;
  }

  .psb-avatar {
    width: 58px;
    height: 58px;
  }

  .psb-testimonial-content p {
    font-size: 11.2px;
  }

  .psb-cta {
    padding: 0;
  }

  .psb-cta .ps-container {
    width: 100%;
  }

  .psb-cta-box {
    border-radius: 0;
    padding: 32px 18px;
    gap: 27px;
  }

  .psb-cta-copy {
    align-items: flex-start;
    gap: 16px;
  }

  .psb-cta-icon {
    width: 58px;
    height: 58px;
    flex-basis: 58px;
  }

  .psb-cta-icon svg {
    width: 31px;
    height: 31px;
  }

  .psb-cta-copy h2 {
    font-size: 25px;
  }

  .psb-cta-copy p {
    font-size: 12px;
  }

  .psb-cta-actions {
    flex-direction: column;
    gap: 11px;
  }

  .psb-cta-btn {
    width: 100%;
    flex: auto;
  }

  .psb-footer {
    padding-top: 38px;
  }

  .psb-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 24px;
  }

  .psb-footer-brand,
  .psb-footer-newsletter {
    grid-column: 1 / -1;
  }

  .psb-footer-brand > p {
    max-width: 100%;
  }

  .psb-footer-logo {
    width: 190px;
  }

  .psb-footer-bottom {
    padding: 15px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .psb-footer-bottom div {
    flex-wrap: wrap;
    gap: 13px 22px;
  }
}

@media (max-width: 430px) {
  .psb-partner-row {
    grid-template-columns: 1fr 1fr;
  }

  .psb-footer-grid {
    grid-template-columns: 1fr;
  }

  .psb-footer-brand,
  .psb-footer-newsletter {
    grid-column: auto;
  }
}
