/* PCB Prototype landing page body only.
   Prefix: ppp-. Header, footer, and inquiry form are intentionally excluded. */

.ppp-page {
  --ppp-bg: #ffffff;
  --ppp-soft: #f4f7fb;
  --ppp-soft-2: #eaf1f7;
  --ppp-ink: #071b31;
  --ppp-text: #24394f;
  --ppp-muted: #617184;
  --ppp-line: #d8e2ec;
  --ppp-blue: #075df0;
  --ppp-blue-dark: #0347bd;
  --ppp-copper: #b87333;
  --ppp-green: #0d6b4f;
  --ppp-radius: 6px;
  --ppp-max: 1180px;
  --ppp-shadow: 0 18px 42px rgba(7, 27, 49, 0.12);
  display: flex;
  flex-direction: column;
  color: var(--ppp-ink);
  background: var(--ppp-bg);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.58;
  overflow-x: hidden;
}

.ppp-page *,
.ppp-page *:before,
.ppp-page *:after {
  box-sizing: border-box;
}

.ppp-page img {
  display: block;
  max-width: 100%;
  height: auto;
}

.ppp-page a {
  text-decoration: none;
}

.ppp-page a:visited {
  color: inherit;
}

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

.ppp-section {
  width: min(var(--ppp-max), calc(100% - 48px));
  margin: 0 auto;
  padding: 86px 0;
}

.ppp-hero {
  order: 1;
}

.ppp-capabilities {
  order: 2;
}

.ppp-risk {
  order: 3;
}

.ppp-old-materials {
  order: 4;
}

.ppp-process {
  order: 5;
}

.ppp-quality {
  order: 6;
}

.ppp-cases {
  order: 7;
}

.ppp-why {
  order: 8;
}

.ppp-certificates {
  order: 9;
}

.ppp-quote-guide {
  order: 10;
}

.ppp-faq {
  order: 11;
}

.ppp-blog {
  order: 12;
}

.ppp-final-cta {
  order: 13;
}

.ppp-page .ppp-section h1,
.ppp-page .ppp-section h2,
.ppp-page .ppp-section h3,
.ppp-page .ppp-section p {
  margin-top: 0;
  text-align: left;
}

.ppp-page .ppp-section h1 {
  margin-bottom: 24px;
  padding: 0;
  border: 0;
  color: var(--ppp-ink);
  background: none;
  font-size: 56px;
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: 0;
  text-indent: 0;
  word-break: normal;
}

.ppp-page .ppp-section h2 {
  margin-bottom: 18px;
  padding: 0;
  border: 0;
  color: var(--ppp-ink);
  background: none;
  font-size: 42px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 0;
  text-indent: 0;
  word-break: normal;
}

.ppp-page .ppp-section h3 {
  padding: 0;
  border: 0;
  color: var(--ppp-ink);
  background: none;
  font-size: 21px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: 0;
  text-indent: 0;
  word-break: normal;
}

.ppp-page .ppp-section p {
  color: var(--ppp-muted);
  font-size: 17px;
}

.ppp-section__intro {
  max-width: 760px;
}

.ppp-section__intro--center {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.ppp-page .ppp-section__intro--center h2,
.ppp-page .ppp-section__intro--center p {
  text-align: center;
}

.ppp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.ppp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--ppp-radius);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.ppp-btn--primary {
  color: #fff;
  background: var(--ppp-blue);
  box-shadow: 0 10px 22px rgba(7, 93, 240, 0.2);
}

.ppp-page .ppp-btn--primary,
.ppp-page .ppp-btn--primary:link,
.ppp-page .ppp-btn--primary:visited,
.ppp-page .ppp-btn--primary:hover,
.ppp-page .ppp-btn--primary:active {
  color: #fff;
}

.ppp-btn--primary:hover {
  background: var(--ppp-blue-dark);
}

.ppp-btn--secondary {
  color: var(--ppp-ink);
  background: #fff;
  border-color: #afbdcc;
}

.ppp-page .ppp-btn--secondary,
.ppp-page .ppp-btn--secondary:link,
.ppp-page .ppp-btn--secondary:visited {
  color: var(--ppp-ink);
}

.ppp-btn--secondary:hover {
  color: var(--ppp-blue);
  border-color: var(--ppp-blue);
}

.ppp-hero {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  grid-template-areas:
    "copy media"
    "proof media";
  gap: 48px;
  align-items: center;
  min-height: 760px;
  padding-top: 178px;
  padding-bottom: 72px;
}

.ppp-hero__content {
  grid-area: copy;
}

.ppp-hero__content p {
  max-width: 620px;
  margin-bottom: 32px;
  color: var(--ppp-text);
  font-size: 19px;
}

.ppp-hero__media {
  grid-area: media;
  overflow: hidden;
  height: 100%;
  min-height: 560px;
  border-radius: var(--ppp-radius);
  background: #fff;
  box-shadow: var(--ppp-shadow);
}

.ppp-hero__media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: contain;
  object-position: 50% 50%;
}

.ppp-proof {
  grid-area: proof;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.ppp-proof div {
  min-height: 112px;
  padding: 20px;
  border: 1px solid var(--ppp-line);
  border-radius: var(--ppp-radius);
  background: #fff;
}

.ppp-proof strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ppp-ink);
  font-size: 23px;
  line-height: 1.1;
}

.ppp-proof span {
  display: block;
  color: var(--ppp-muted);
  font-size: 14px;
  line-height: 1.45;
}

.ppp-risk__layout {
  display: grid;
  grid-template-columns: 0.92fr 1.28fr;
  gap: 26px;
  align-items: stretch;
}

.ppp-risk__panel {
  display: flex;
  min-height: 470px;
  flex-direction: column;
  justify-content: space-between;
  padding: 42px;
  border-radius: 8px;
  background: var(--ppp-ink);
  box-shadow: 0 22px 48px rgba(7, 27, 49, 0.18);
}

.ppp-page .ppp-risk__panel h2 {
  margin-bottom: 18px;
  color: #fff;
  font-size: 34px;
  line-height: 1.12;
}

.ppp-page .ppp-risk__panel p {
  max-width: 440px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
}

.ppp-risk__checks {
  display: grid;
  gap: 12px;
  margin-bottom: 32px;
}

.ppp-risk__checks span {
  position: relative;
  display: block;
  padding-left: 26px;
  color: #fff;
  font-size: 15px;
  line-height: 1.45;
}

.ppp-risk__checks span:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #30d27c;
  box-shadow: 0 0 0 5px rgba(48, 210, 124, 0.14);
}

.ppp-risk__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.ppp-risk__cards article {
  min-height: 226px;
  padding: 28px;
  border: 1px solid rgba(174, 189, 204, 0.68);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 32px rgba(7, 27, 49, 0.08);
}

.ppp-risk__cards span {
  display: block;
  margin-bottom: 16px;
  color: var(--ppp-blue);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.ppp-page .ppp-risk__cards h3 {
  margin-bottom: 14px;
  font-size: 21px;
  line-height: 1.2;
}

.ppp-page .ppp-risk__cards p {
  margin-bottom: 0;
  color: var(--ppp-text);
  font-size: 15px;
  line-height: 1.62;
}

.ppp-risk__strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.ppp-risk__strip div {
  padding: 20px 22px;
  border: 1px solid var(--ppp-line);
  border-radius: 8px;
  background: #fff;
}

.ppp-risk__strip strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ppp-ink);
  font-size: 16px;
  line-height: 1.25;
}

.ppp-risk__strip span {
  display: block;
  color: var(--ppp-muted);
  font-size: 14px;
  line-height: 1.55;
}

.ppp-capabilities,
.ppp-risk,
.ppp-cases,
.ppp-why,
.ppp-process,
.ppp-quality,
.ppp-certificates,
.ppp-quote-guide,
.ppp-faq,
.ppp-blog {
  width: 100%;
  max-width: none;
  padding-right: max(24px, calc((100vw - var(--ppp-max)) / 2));
  padding-left: max(24px, calc((100vw - var(--ppp-max)) / 2));
}

.ppp-capabilities {
  background: var(--ppp-soft);
}

.ppp-risk {
  padding-top: 78px;
  padding-bottom: 78px;
  background: #ffffff;
}

.ppp-cases {
  background: #fcfeff;
}

.ppp-why {
  background: #f4f8f3;
}

.ppp-process {
  background: #fbfcfe;
}

.ppp-quality {
  background: #edf6ff;
}

.ppp-certificates {
  background: #f6f8fc;
}

.ppp-quote-guide {
  background: #eef5f2;
}

.ppp-faq {
  background: #f8f9fb;
}

.ppp-blog {
  background: #ffffff;
}

.ppp-capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.ppp-capability-grid article {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 224px;
  border: 1px solid var(--ppp-line);
  border-radius: var(--ppp-radius);
  background: #fff;
}

.ppp-capability-grid img {
  width: 100%;
  height: 174px;
  object-fit: cover;
  background: var(--ppp-soft-2);
}

.ppp-page .ppp-capability-grid h3 {
  padding: 24px 24px 0;
  margin-bottom: 14px;
  text-align: center;
}

.ppp-page .ppp-capability-grid p {
  padding: 0 24px 26px;
  margin-bottom: 0;
  font-size: 15px;
  flex: 1;
  text-align: center;
}

.ppp-why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.ppp-why-grid article {
  min-height: 190px;
  padding: 28px;
  border: 1px solid var(--ppp-line);
  border-radius: var(--ppp-radius);
  background: #fff;
}

.ppp-why-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--ppp-ink);
  font-size: 19px;
  line-height: 1.22;
}

.ppp-why-grid p {
  margin-bottom: 0;
  font-size: 15px;
}

.ppp-cases {
  padding-top: 96px;
}

.ppp-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 46px;
}

.ppp-case {
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  border: 1px solid var(--ppp-line);
  border-radius: var(--ppp-radius);
  background: #fff;
}

.ppp-case__image {
  width: 100%;
  height: 250px;
  min-height: 250px;
  object-fit: cover;
  background: var(--ppp-soft-2);
}

.ppp-case:nth-child(1) .ppp-case__image {
  object-position: 50% 52%;
}

.ppp-case:nth-child(2) .ppp-case__image {
  object-position: 48% 50%;
}

.ppp-case:nth-child(3) .ppp-case__image {
  object-position: 50% 50%;
}

.ppp-case__body {
  padding: 30px;
}

.ppp-case__body p {
  margin-bottom: 20px;
  font-size: 15px;
}

.ppp-case__notes {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.ppp-case__notes div {
  padding: 13px 14px;
  border: 1px solid var(--ppp-line);
  border-radius: var(--ppp-radius);
  background: var(--ppp-soft);
}

.ppp-case__notes strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ppp-ink);
  font-size: 13px;
  line-height: 1.2;
}

.ppp-case__notes span {
  display: block;
  color: var(--ppp-muted);
  font-size: 13px;
  line-height: 1.42;
}

.ppp-case dl {
  display: grid;
  grid-template-columns: 124px minmax(0, 1fr);
  gap: 0;
  margin: 0 0 24px;
  border-top: 1px solid var(--ppp-line);
}

.ppp-case dt,
.ppp-case dd {
  margin: 0;
  padding: 11px 0;
  border-bottom: 1px solid var(--ppp-line);
  font-size: 14px;
  line-height: 1.35;
}

.ppp-case dt {
  color: var(--ppp-muted);
  font-weight: 700;
}

.ppp-case dd {
  color: var(--ppp-ink);
  font-weight: 700;
}

.ppp-case__body a,
.ppp-blog-header a,
.ppp-blog-picks a {
  color: var(--ppp-blue);
  font-size: 14px;
  font-weight: 800;
}

.ppp-case__body a:visited,
.ppp-blog-header a:visited,
.ppp-blog-picks a:visited {
  color: var(--ppp-blue);
}

.ppp-decision {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 52px;
  align-items: start;
}

.ppp-decision-table {
  overflow: hidden;
  border: 1px solid var(--ppp-line);
  border-radius: var(--ppp-radius);
  background: #fff;
}

.ppp-decision-table > div {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 24px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--ppp-line);
}

.ppp-decision-table > div:last-child {
  border-bottom: 0;
}

.ppp-decision-table strong {
  color: var(--ppp-ink);
  font-size: 17px;
}

.ppp-decision-table span {
  color: var(--ppp-muted);
  font-size: 15px;
}

.ppp-old-materials {
  display: block;
  width: 100%;
  max-width: none;
  padding: 86px max(24px, calc((100vw - var(--ppp-max)) / 2));
  background-color: #eef3f7;
  background-image: linear-gradient(180deg, #f7f9fc 0%, #eef3f7 100%);
}

.ppp-old-title {
  max-width: 780px;
  margin: 0 auto 38px;
  padding: 0;
  color: var(--ppp-ink);
  text-align: center;
}

.ppp-page .ppp-old-title h2 {
  margin: 0 0 16px;
  padding: 0;
  border: 0;
  color: var(--ppp-ink);
  background: none;
  font-size: 42px;
  line-height: 1.12;
  font-weight: 800;
  text-align: center;
  text-indent: 0;
  word-break: normal;
}

.ppp-old-title p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--ppp-muted);
  font-size: 17px;
  line-height: 1.72;
  text-align: center;
}

.ppp-old-process {
  display: flex;
  width: min(var(--ppp-max), 100%);
  height: 430px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
  gap: 12px;
}

.ppp-old-process__item {
  position: relative;
  z-index: 1;
  flex: 1 1 0;
  min-width: 0;
  height: 100%;
  margin-right: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(7, 27, 49, 0.08);
  border-radius: 8px;
  background-color: #071b31;
  box-shadow: 0 18px 36px rgba(7, 27, 49, 0.13);
  transition: flex 320ms ease, box-shadow 320ms ease;
}

.ppp-old-process__item:last-child {
  margin-right: 0;
}

.ppp-old-process__item--active {
  flex: 3.3 1 0;
  box-shadow: 0 24px 48px rgba(7, 27, 49, 0.22);
}

.ppp-old-process__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 360ms ease, filter 360ms ease;
}

.ppp-old-process__item:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(7, 27, 49, 0.82) 0%, rgba(7, 27, 49, 0.38) 48%, rgba(7, 27, 49, 0.9) 100%);
  opacity: 1;
  visibility: visible;
  transition: background 320ms ease, opacity 320ms ease;
}

.ppp-old-process__text {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 24px 14px;
  color: #fff;
  transition: opacity 240ms ease, visibility 240ms ease;
}

.ppp-old-process__icon {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  text-align: center;
}

.ppp-old-process__icon img {
  display: block;
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.ppp-old-process__icon strong {
  display: block;
  max-width: 124px;
  margin-top: 14px;
  color: #fff;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 700;
  text-align: center;
}

.ppp-old-process__intr {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  z-index: 3;
  max-width: 430px;
  padding: 24px 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: #fff;
  background: rgba(7, 27, 49, 0.82);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(18px);
  visibility: hidden;
  transition: opacity 260ms ease, transform 260ms ease, visibility 260ms ease;
}

.ppp-old-process__item--active .ppp-old-process__intr {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.ppp-old-process__item--active:before {
  background: linear-gradient(90deg, rgba(7, 27, 49, 0.82) 0%, rgba(7, 27, 49, 0.38) 58%, rgba(7, 27, 49, 0.16) 100%);
}

.ppp-old-process__item--active .ppp-old-process__bg {
  transform: scale(1.08);
  filter: saturate(1.08);
}

.ppp-old-process__item--active .ppp-old-process__text {
  opacity: 0;
  visibility: hidden;
}

.ppp-page .ppp-old-process__intr h5 {
  display: block;
  margin: 0 0 12px;
  padding: 0;
  color: #fff;
  font-size: 24px;
  line-height: 1.18;
  font-weight: 800;
  white-space: normal;
}

.ppp-old-process__btn {
  display: inline;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  pointer-events: none;
}

.ppp-old-process__btn:hover {
  color: #fff;
}

.ppp-page .ppp-old-process__intr p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.62;
}

.ppp-process {
  border-top: 1px solid var(--ppp-line);
  border-bottom: 1px solid var(--ppp-line);
}

.ppp-process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.ppp-process-list li {
  min-height: 176px;
  padding: 26px;
  border: 1px solid var(--ppp-line);
  border-radius: var(--ppp-radius);
  background: #fff;
  counter-increment: process;
}

.ppp-process-list li:before {
  content: "0" counter(process);
  display: block;
  margin-bottom: 18px;
  color: var(--ppp-copper);
  font-size: 14px;
  font-weight: 800;
}

.ppp-process-list strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ppp-ink);
  font-size: 19px;
  line-height: 1.2;
}

.ppp-process-list span {
  display: block;
  color: var(--ppp-muted);
  font-size: 15px;
}

.ppp-quality {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 54px;
  align-items: center;
}

.ppp-quality__copy p {
  margin-bottom: 0;
}

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

.ppp-quality__grid span {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 0 18px;
  color: var(--ppp-ink);
  border: 1px solid var(--ppp-line);
  border-radius: var(--ppp-radius);
  background: #fff;
  font-size: 15px;
  font-weight: 800;
}

.ppp-certificates {
  border-top: 1px solid var(--ppp-line);
}

.ppp-certificate-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.ppp-certificate-grid article {
  min-height: 164px;
  padding: 26px;
  border: 1px solid var(--ppp-line);
  border-radius: var(--ppp-radius);
  background: #fff;
}

.ppp-certificate-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ppp-ink);
  font-size: 18px;
  line-height: 1.22;
}

.ppp-certificate-grid span {
  display: block;
  color: var(--ppp-muted);
  font-size: 15px;
  line-height: 1.5;
}

.ppp-old-certifications {
  display: block;
  background: #f6f8fc;
}

.ppp-old-cert {
  display: flex;
  align-items: center;
  gap: 58px;
  max-width: var(--ppp-max);
  margin: 0 auto;
}

.ppp-old-cert__box {
  flex: 0 0 49%;
}

.ppp-old-cert__show {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ppp-old-cert__show li {
  overflow: hidden;
  border: 1px solid var(--ppp-line);
  background: #fff;
  box-shadow: 0 8px 22px rgba(7, 27, 49, 0.08);
}

.ppp-old-cert__show a {
  position: relative;
  display: block;
  padding: 10px;
}

.ppp-old-cert__show a:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(30, 76, 223, 0.88);
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 180ms ease;
}

.ppp-old-cert__show a:hover:before {
  opacity: 1;
}

.ppp-old-cert__show img {
  width: 100%;
  height: 310px;
  object-fit: contain;
  background: #f7f9fc;
}

.ppp-old-cert__intr {
  flex: 1;
}

.ppp-page .ppp-old-cert__intr h2 {
  margin: 0 0 18px;
  padding: 0;
  border: 0;
  color: var(--ppp-ink);
  background: none;
  font-size: 42px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 0;
  text-indent: 0;
  word-break: normal;
}

.ppp-page .ppp-old-cert__intr p {
  margin-bottom: 22px;
  color: var(--ppp-muted);
  font-size: 17px;
  line-height: 1.58;
}

.ppp-old-cert__intr ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ppp-old-cert__intr li {
  position: relative;
  padding-left: 18px;
  color: var(--ppp-ink);
  font-size: 15px;
  line-height: 1.65;
  font-weight: 700;
}

.ppp-old-cert__intr li:before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1e4cdf;
}

.ppp-quote-guide {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 54px;
  align-items: start;
}

.ppp-quote-guide__copy p {
  margin-bottom: 28px;
}

.ppp-file-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ppp-file-list li {
  padding: 18px;
  color: var(--ppp-ink);
  border: 1px solid var(--ppp-line);
  border-radius: var(--ppp-radius);
  background: #fff;
  font-size: 15px;
  font-weight: 700;
}

.ppp-faq__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
}

.ppp-faq__item {
  overflow: hidden;
  border: 1px solid var(--ppp-line);
  border-radius: var(--ppp-radius);
  background: #fff;
}

.ppp-faq__item button {
  display: block;
  width: 100%;
  padding: 20px 48px 20px 20px;
  color: var(--ppp-ink);
  border: 0;
  background: #fff;
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
  text-align: left;
  position: relative;
}

.ppp-faq__item button:after {
  content: "+";
  position: absolute;
  top: 18px;
  right: 20px;
  color: var(--ppp-blue);
  font-size: 22px;
  line-height: 1;
}

.ppp-faq__item.is-open button:after {
  content: "-";
}

.ppp-faq__answer {
  display: none;
  padding: 0 20px 22px;
  color: var(--ppp-muted);
  font-size: 15px;
}

.ppp-faq__item.is-open .ppp-faq__answer {
  display: block;
}

.ppp-blog {
  border-bottom: 1px solid var(--ppp-line);
}

.ppp-blog-header {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
  gap: 56px;
  align-items: end;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--ppp-line);
}

.ppp-blog-header span,
.ppp-blog-lead span,
.ppp-blog-picks span {
  display: block;
  margin-bottom: 10px;
  color: var(--ppp-copper);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

.ppp-blog-header span {
  margin-bottom: 14px;
  text-transform: uppercase;
}

.ppp-page .ppp-blog-header h2 {
  max-width: 680px;
  margin-bottom: 0;
  font-size: 48px;
}

.ppp-blog-header p {
  margin-bottom: 18px;
  color: var(--ppp-text);
  font-size: 17px;
}

.ppp-blog-header a {
  display: inline-flex;
}

.ppp-blog-hub {
  display: grid;
  gap: 22px;
  margin-top: 34px;
}

.ppp-blog-lead {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--ppp-radius);
  background:#071b314f;
}

.ppp-blog-lead img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.ppp-blog-lead > div {
  display: flex;
  min-width: 0;
  padding: 42px;
  flex-direction: column;
  justify-content: center;
}

.ppp-blog-lead h3 {
  max-width: 520px;
  margin-bottom: 14px;
  color: #fff;
  font-size: 34px;
  overflow-wrap: anywhere;
  word-break: normal;
}

.ppp-blog-lead p {
  max-width: 520px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
}

.ppp-blog-lead a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--ppp-radius);
  font-size: 14px;
  font-weight: 800;
}

.ppp-blog-lead a:visited {
  color: #fff;
}

.ppp-blog-picks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.ppp-blog-picks article {
  display: flex;
  min-width: 0;
  min-height: 260px;
  overflow: hidden;
  padding: 24px 26px;
  flex-direction: column;
  border: 1px solid var(--ppp-line);
  border-radius: var(--ppp-radius);
  background: #fff;
}

.ppp-blog-picks h3 {
  display: -webkit-box;
  min-width: 0;
  max-height: 2.64em;
  margin-bottom: 12px;
  overflow: hidden;
  color: var(--ppp-ink);
  font-size: 20px;
  line-height: 1.32;
  overflow-wrap: anywhere;
  word-break: normal;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.ppp-blog-picks h3 a,
.ppp-blog-lead h3 a {
  display: inline;
  margin-top: 0;
  color: inherit;
  font: inherit;
  line-height: inherit;
  overflow-wrap: anywhere;
  word-break: normal;
}

.ppp-blog-picks h3 a:hover,
.ppp-blog-picks h3 a:visited,
.ppp-blog-lead h3 a:hover,
.ppp-blog-lead h3 a:visited {
  color: inherit;
}

.ppp-page .ppp-blog .ppp-blog-picks article {
  min-width: 0;
  overflow: hidden;
}

.ppp-page .ppp-blog .ppp-blog-picks h3 {
  display: -webkit-box !important;
  max-width: 100%;
  max-height: 2.64em;
  overflow: hidden;
  line-height: 1.32;
  overflow-wrap: anywhere;
  word-break: normal;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.ppp-page .ppp-blog .ppp-blog-picks h3 a {
  margin-top: 0;
  color: inherit;
  font: inherit;
  line-height: inherit;
  overflow-wrap: anywhere;
  word-break: normal;
}

.ppp-blog-picks p {
  margin-bottom: 20px;
  font-size: 15px;
}

.ppp-blog-picks a {
  margin-top: auto;
}

.ppp-blog-picks a:hover,
.ppp-blog-lead a:hover {
  color: var(--ppp-blue);
}

.ppp-final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  margin-top: 86px;
  margin-bottom: 86px;
  padding: 48px;
  border-radius: var(--ppp-radius);
  background: var(--ppp-ink);
}

.ppp-page .ppp-final-cta h2,
.ppp-page .ppp-final-cta p {
  color: #fff;
}

.ppp-page .ppp-final-cta h2 {
  margin-bottom: 12px;
  font-size: 34px;
}

.ppp-final-cta p {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.ppp-final-cta .ppp-btn--secondary {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
}

.ppp-final-cta .ppp-btn--secondary:hover {
  border-color: #fff;
}

@media (max-width: 1100px) {
  .ppp-page .ppp-section h1 {
    font-size: 50px;
  }

  .ppp-capability-grid,
  .ppp-process-list,
  .ppp-why-grid,
  .ppp-certificate-grid,
  .ppp-risk__cards,
  .ppp-risk__strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ppp-risk__layout {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .ppp-risk__panel {
    min-height: 0;
  }

  .ppp-old-process {
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .ppp-old-process__item {
    flex: 0 0 132px;
  }

  .ppp-old-process__item--active {
    flex: 0 0 430px;
  }

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

  .ppp-blog-lead,
  .ppp-blog-header {
    grid-template-columns: 1fr;
  }

  .ppp-blog-header {
    gap: 18px;
    align-items: start;
  }

  .ppp-old-cert {
    gap: 34px;
  }

  .ppp-old-cert__show img {
    height: 250px;
  }

}

@media (max-width: 900px) {
  .ppp-hero,
  .ppp-decision,
  .ppp-quality,
  .ppp-risk__layout,
  .ppp-quote-guide,
  .ppp-final-cta {
    grid-template-columns: 1fr;
  }

  .ppp-hero {
    grid-template-areas:
      "copy"
      "media"
      "proof";
    min-height: auto;
  }

  .ppp-hero__media,
  .ppp-hero__media img {
    height: auto;
    min-height: 0;
  }

  .ppp-proof,
  .ppp-faq__list {
    grid-template-columns: 1fr;
  }

  .ppp-decision-table > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .ppp-old-cert {
    display: grid;
    grid-template-columns: 1fr;
  }

  .ppp-old-cert__box {
    width: 100%;
  }

  .ppp-final-cta {
    margin-top: 54px;
    margin-bottom: 54px;
  }
}

@media (max-width: 640px) {
  .ppp-section {
    width: calc(100% - 32px);
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .ppp-capabilities,
  .ppp-risk,
  .ppp-quality,
  .ppp-faq,
  .ppp-certificates,
  .ppp-old-materials {
    padding-right: 16px;
    padding-left: 16px;
  }

  .ppp-old-title {
    padding: 0 0 24px;
  }

  .ppp-page .ppp-old-title h2,
  .ppp-page .ppp-old-cert__intr h2 {
    font-size: 30px;
  }

  .ppp-old-title p {
    max-width: 100%;
  }

  .ppp-page .ppp-section h1 {
    font-size: 34px;
    line-height: 1.08;
  }

  .ppp-page .ppp-section h2 {
    font-size: 30px;
  }

  .ppp-page .ppp-blog-header h2 {
    font-size: 34px;
  }

  .ppp-hero {
    padding-top: 40px;
  }

  .ppp-hero__content p {
    font-size: 17px;
  }

  .ppp-actions,
  .ppp-btn {
    width: 100%;
  }

  .ppp-hero__media img {
    height: 330px;
  }

  .ppp-proof,
  .ppp-risk__cards,
  .ppp-risk__strip,
  .ppp-capability-grid,
  .ppp-case-grid,
  .ppp-process-list,
  .ppp-file-list,
  .ppp-quality__grid,
  .ppp-why-grid,
  .ppp-certificate-grid,
  .ppp-blog-picks {
    grid-template-columns: 1fr;
  }

  .ppp-risk__layout {
    gap: 18px;
  }

  .ppp-risk__panel {
    padding: 28px 24px;
  }

  .ppp-page .ppp-risk__panel h2 {
    font-size: 28px;
  }

  .ppp-risk__cards article {
    min-height: 0;
    padding: 24px 22px;
  }

  .ppp-page .ppp-risk__cards h3 {
    max-width: none;
    font-size: 20px;
  }

  .ppp-risk__strip div {
    padding: 18px 20px;
  }

  .ppp-old-process {
    display: block;
    overflow-x: visible;
    padding-bottom: 0;
  }

  .ppp-old-process__item {
    width: 100%;
    height: auto;
    min-height: 0;
    margin-right: 0;
    margin-bottom: 16px;
    padding-right: 0;
    padding-left: 0;
    border: 1px solid var(--ppp-line);
    background: #fff;
    box-shadow: 0 12px 28px rgba(7, 27, 49, 0.08);
  }

  .ppp-old-process__item--active {
    width: 100%;
    flex-basis: auto;
    box-shadow: 0 12px 28px rgba(7, 27, 49, 0.08);
  }

  .ppp-page .ppp-old-process__bg {
    position: relative;
    inset: auto;
    z-index: 0;
    width: 100%;
    height: 178px;
    min-height: 178px;
    transform: none;
    object-fit: cover;
  }

  .ppp-old-process__item:before {
    content: none;
  }

  .ppp-old-process__intr {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    display: block;
    max-width: none;
    padding: 22px 20px 24px;
    border: 0;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
    opacity: 1;
    transform: none;
    visibility: visible;
  }

  .ppp-page .ppp-old-process__intr h5 {
    margin-bottom: 10px;
    color: var(--ppp-ink);
    font-size: 21px;
  }

  .ppp-old-process__btn,
  .ppp-old-process__btn:hover {
    color: var(--ppp-ink);
  }

  .ppp-page .ppp-old-process__intr p {
    color: var(--ppp-muted);
    font-size: 15px;
  }

  .ppp-old-process__text {
    display: none;
  }

  .ppp-old-cert__show {
    gap: 14px;
  }

  .ppp-old-cert__show img {
    height: 210px;
  }

  .ppp-old-cert__intr ul {
    grid-template-columns: 1fr;
  }

  .ppp-blog-lead img {
    height: 230px;
    min-height: 230px;
  }

  .ppp-blog-lead > div {
    padding: 24px;
  }

  .ppp-blog-lead h3 {
    font-size: 24px;
  }

  .ppp-case__body {
    padding: 22px;
  }

  .ppp-page .ppp-capability-grid h3 {
    padding: 22px 22px 0;
  }

  .ppp-page .ppp-capability-grid p {
    padding: 0 22px 24px;
  }

  .ppp-case dl {
    grid-template-columns: 1fr;
  }

  .ppp-case dt {
    padding-bottom: 2px;
    border-bottom: 0;
  }

  .ppp-case dd {
    padding-top: 0;
  }

  .ppp-final-cta {
    padding: 28px;
  }
}
