.pcx {
  --pcx-ink: #071a35;
  --pcx-muted: #62727d;
  --pcx-line: #d7e3df;
  --pcx-soft: #f0f7f2;
  --pcx-gold: #79b93a;
  --pcx-dark: #071a35;
  margin: clamp(52px, 6vw, 82px) 0 clamp(64px, 8vw, 104px);
  color: var(--pcx-ink);
  font-family: var(--sort-body-font, "Manrope"), Arial, Helvetica, sans-serif;
}

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

.pcx__shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.pcx__eyebrow {
  margin: 0 0 13px;
  color: var(--pcx-gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.pcx__trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border-radius: 18px;
  background: var(--pcx-dark);
  color: #fff;
  box-shadow: 0 18px 50px rgba(20, 33, 30, .12);
}

.pcx__trust-item {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  align-items: center;
  gap: 13px;
  min-width: 0;
  padding: 21px 18px;
}

.pcx__trust-item + .pcx__trust-item {
  border-left: 1px solid rgba(255, 255, 255, .12);
}

.pcx__icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(137, 208, 75, .28);
  border-radius: 50%;
  background: rgba(121, 185, 58, .12);
  color: #95d456;
}

.pcx__icon svg,
.pcx__help-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.pcx__trust-item strong,
.pcx__trust-item div > span {
  display: block;
}

.pcx__trust-item strong {
  margin-bottom: 3px;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .01em;
}

.pcx__trust-item div > span {
  color: rgba(255, 255, 255, .55);
  font-size: 10px;
  line-height: 1.4;
}

.pcx__core {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, .95fr);
  min-height: 486px;
  margin-top: 20px;
  overflow: hidden;
  border: 1px solid #e2dfd7;
  border-radius: 24px;
  background: var(--pcx-soft);
}

.pcx__intro {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: clamp(44px, 5vw, 68px);
}

.pcx__intro h2,
.pcx__faq-intro h2,
.pcx__closing h2,
.pcx__step h3,
.pcx__question summary {
  margin: 0;
  font-family: var(--sort-body-font, "Manrope"), Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: -.025em;
}

.pcx__intro h2 {
  max-width: 520px;
  font-size: clamp(42px, 4.5vw, 58px);
  line-height: .99;
}

.pcx__intro-copy {
  max-width: 510px;
  margin: 22px 0 0;
  color: var(--pcx-muted);
  font-size: 13px;
  line-height: 1.75;
}

.pcx__checks {
  display: grid;
  gap: 9px;
  margin: 24px 0 0;
  padding: 0;
  color: #3f4d48;
  font-size: 11px;
  list-style: none;
}

.pcx__checks li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.pcx__checks li > span {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #dfe8e2;
  color: #285040;
  font-size: 10px;
  font-weight: 800;
}

.pcx__primary-button,
.pcx__closing-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  text-decoration: none;
  text-transform: uppercase;
}

.pcx__primary-button {
  min-width: 286px;
  min-height: 54px;
  margin-top: 30px;
  padding: 0 19px;
  border-radius: 9px;
  background: var(--pcx-dark);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  box-shadow: 0 13px 30px rgba(18, 33, 28, .16);
}

.pcx a.pcx__primary-button,
.pcx a.pcx__primary-button:visited {
  color: #fff;
}

.pcx a.pcx__primary-button:hover {
  background: #28483d;
  color: #fff;
}

.pcx__primary-button span,
.pcx__closing-button span {
  font-size: 17px;
}

.pcx__timeline {
  display: grid;
  align-content: center;
  gap: 10px;
  margin: 18px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .78);
  list-style: none;
  box-shadow: inset 0 0 0 1px rgba(20, 33, 30, .06);
}

.pcx__step {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  min-height: 116px;
  padding: 17px 19px;
  border: 1px solid #e2e5e1;
  border-radius: 14px;
  background: #fff;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.pcx__step:hover {
  transform: translateY(-2px);
  border-color: #c9d3cc;
  box-shadow: 0 12px 30px rgba(20, 33, 30, .08);
}

.pcx__step-number {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid #d5c1a4;
  border-radius: 50%;
  color: var(--pcx-gold);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
}

.pcx__step:not(:last-child)::after {
  position: absolute;
  bottom: -18px;
  left: 40px;
  width: 1px;
  height: 18px;
  background: #d5c1a4;
  content: "";
}

.pcx__step h3 {
  margin: 0 0 7px;
  font-family: var(--sort-title-font, "Cormorant Garamond"), Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 600;
  line-height: 1.05;
}

.pcx__step p {
  max-width: 340px;
  margin: 0;
  color: var(--pcx-muted);
  font-size: 11px;
  line-height: 1.6;
}

.pcx__faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  gap: clamp(46px, 6vw, 82px);
  margin-top: 20px;
  padding: clamp(46px, 5.5vw, 68px);
  border: 1px solid var(--pcx-line);
  border-radius: 24px;
  background: #fff;
}

.pcx__faq-intro {
  align-self: start;
  padding-top: 4px;
}

.pcx__faq-intro h2 {
  max-width: 360px;
  font-size: clamp(40px, 4vw, 54px);
  line-height: 1;
}

.pcx__faq-intro > p:nth-of-type(2) {
  max-width: 330px;
  margin: 20px 0 0;
  color: var(--pcx-muted);
  font-size: 12px;
  line-height: 1.75;
}

.pcx__help-card {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 13px;
  max-width: 330px;
  margin-top: 30px;
  padding: 18px;
  border-radius: 14px;
  background: var(--pcx-soft);
}

.pcx__help-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #dfe8e2;
  color: #2b5143;
}

.pcx__help-card strong,
.pcx__help-card div > span,
.pcx__help-card a {
  display: block;
}

.pcx__help-card strong {
  margin-bottom: 5px;
  font-size: 11px;
}

.pcx__help-card div > span {
  color: var(--pcx-muted);
  font-size: 10px;
  line-height: 1.5;
}

.pcx__help-card a {
  width: fit-content;
  margin-top: 9px;
  border-bottom: 1px solid #8ba095;
  color: #285040;
  font-size: 10px;
  font-weight: 750;
  text-decoration: none;
}

.pcx__faq-panel {
  min-width: 0;
}

.pcx__accordion {
  border-top: 1px solid var(--pcx-ink);
}

.pcx__question {
  border-bottom: 1px solid var(--pcx-line);
}

.pcx__question[open] {
  margin-inline: -14px;
  padding-inline: 14px;
  border-color: transparent;
  border-radius: 12px;
  background: #f7f6f2;
}

.pcx__question summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 32px;
  align-items: center;
  gap: 22px;
  min-height: 68px;
  padding: 13px 2px;
  cursor: pointer;
  font-family: var(--sort-title-font, "Cormorant Garamond"), Georgia, "Times New Roman", serif;
  font-size: clamp(19px, 1.8vw, 23px);
  font-weight: 600;
  line-height: 1.2;
  list-style: none;
}

.pcx__question summary::-webkit-details-marker {
  display: none;
}

.pcx__question summary i {
  position: relative;
  display: block;
  width: 32px;
  height: 32px;
  border: 1px solid #cad2cc;
  border-radius: 50%;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.pcx__question summary i::before,
.pcx__question summary i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  transform: translate(-50%, -50%);
  background: #315347;
  content: "";
}

.pcx__question summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.pcx__question[open] summary i {
  transform: rotate(180deg);
  border-color: #315347;
  background: #315347;
}

.pcx__question[open] summary i::before,
.pcx__question[open] summary i::after {
  background: #fff;
}

.pcx__question[open] summary i::after {
  opacity: 0;
}

.pcx__question summary:hover i,
.pcx__question summary:focus-visible i {
  border-color: #315347;
}

.pcx__question summary:focus-visible {
  border-radius: 6px;
  outline: 0;
  box-shadow: inset 0 0 0 1px rgba(49, 83, 71, .45);
}

.pcx__answer {
  max-width: 610px;
  padding: 4px 54px 22px 2px;
}

.pcx__answer p {
  margin: 0;
  color: var(--pcx-muted);
  font-size: 11px;
  line-height: 1.75;
}

.pcx__policy-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 22px;
  padding: 15px 17px;
  border-radius: 10px;
  background: var(--pcx-soft);
}

.pcx__policy-links > span {
  margin-right: auto;
  color: var(--pcx-muted);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.pcx__policy-links a {
  border-bottom: 1px solid #98a89f;
  color: #2c5043;
  font-size: 10px;
  font-weight: 750;
  text-decoration: none;
}

.pcx__closing {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  align-items: center;
  gap: 54px;
  margin-top: 20px;
  padding: 42px 48px;
  border-radius: 22px;
  background: var(--pcx-dark);
  color: #fff;
}

.pcx__closing h2 {
  max-width: 670px;
  color: #fff;
  font-size: clamp(34px, 3.5vw, 46px);
  line-height: 1.02;
}

.pcx__closing-action {
  display: grid;
  gap: 10px;
}

.pcx__closing-button {
  min-height: 56px;
  padding: 0 20px;
  border-radius: 9px;
  background: #fff;
  color: var(--pcx-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .09em;
}

.pcx a.pcx__closing-button,
.pcx a.pcx__closing-button:visited {
  color: var(--pcx-dark);
}

.pcx a.pcx__closing-button:hover {
  background: #ddc7a6;
  color: var(--pcx-dark);
}

.pcx__closing-action small {
  color: rgba(255, 255, 255, .5);
  font-size: 9px;
  letter-spacing: .06em;
  text-align: center;
  text-transform: uppercase;
}

.pcx__mobile-cta {
  display: none;
}

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

  .pcx__trust-item:nth-child(3) {
    border-left: 0;
  }

  .pcx__trust-item:nth-child(n+3) {
    border-top: 1px solid rgba(255, 255, 255, .12);
  }

  .pcx__core,
  .pcx__faq-layout {
    grid-template-columns: 1fr;
  }

  .pcx__core {
    min-height: 0;
  }

  .pcx__intro {
    padding-bottom: 34px;
  }

  .pcx__timeline {
    margin-top: 0;
  }

  .pcx__faq-layout {
    gap: 38px;
  }

  .pcx__faq-intro {
    display: grid;
    grid-template-columns: 1fr minmax(260px, .72fr);
    column-gap: 34px;
  }

  .pcx__faq-intro .pcx__eyebrow,
  .pcx__faq-intro h2,
  .pcx__faq-intro > p:nth-of-type(2) {
    grid-column: 1;
  }

  .pcx__help-card {
    grid-column: 2;
    grid-row: 1 / span 3;
    align-self: end;
    margin-top: 0;
  }

  .pcx__closing {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .pcx__closing-action {
    max-width: 420px;
  }
}

@media (max-width: 720px) {
  .pcx {
    margin-block: 44px 74px;
  }

  .pcx__shell {
    width: calc(100% - 24px);
  }

  .pcx__trust {
    border-radius: 15px;
  }

  .pcx__trust-item {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
    padding: 15px 12px;
  }

  .pcx__icon {
    width: 34px;
    height: 34px;
  }

  .pcx__icon svg {
    width: 17px;
    height: 17px;
  }

  .pcx__trust-item strong {
    font-size: 10px;
  }

  .pcx__trust-item div > span {
    font-size: 8px;
  }

  .pcx__mobile-cta {
    position: sticky;
    bottom: 10px;
    z-index: 8;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 58px;
    margin: 10px 0 -68px;
    padding: 10px 15px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 13px;
    background: rgba(18, 33, 28, .96);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 16px 38px rgba(18, 33, 28, .3);
    backdrop-filter: blur(12px);
  }

  .pcx a.pcx__mobile-cta,
  .pcx a.pcx__mobile-cta:visited,
  .pcx a.pcx__mobile-cta:hover {
    color: #fff;
  }

  .pcx__mobile-cta span,
  .pcx__mobile-cta strong,
  .pcx__mobile-cta small {
    display: block;
  }

  .pcx__mobile-cta strong {
    margin-bottom: 2px;
    font-size: 10px;
  }

  .pcx__mobile-cta small {
    color: rgba(255, 255, 255, .58);
    font-size: 8px;
  }

  .pcx__mobile-cta i {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff;
    color: var(--pcx-dark);
    font-size: 17px;
    font-style: normal;
  }

  .pcx__core,
  .pcx__faq-layout,
  .pcx__closing {
    border-radius: 18px;
  }

  .pcx__core {
    margin-top: 16px;
  }

  .pcx__intro {
    padding: 40px 22px 28px;
  }

  .pcx__intro h2,
  .pcx__faq-intro h2 {
    font-size: 39px;
    line-height: 1.01;
  }

  .pcx__intro-copy {
    margin-top: 18px;
    font-size: 12px;
  }

  .pcx__checks {
    margin-top: 20px;
    font-size: 10px;
  }

  .pcx__primary-button {
    width: 100%;
    min-width: 0;
    margin-top: 26px;
  }

  .pcx__timeline {
    gap: 8px;
    margin: 0 10px 10px;
    padding: 10px;
    border-radius: 14px;
  }

  .pcx__step {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 14px;
    min-height: 104px;
    padding: 15px;
  }

  .pcx__step-number {
    width: 38px;
    height: 38px;
  }

  .pcx__step:not(:last-child)::after {
    left: 34px;
  }

  .pcx__step h3 {
    font-size: 21px;
  }

  .pcx__step p {
    font-size: 10px;
  }

  .pcx__faq-layout {
    gap: 32px;
    margin-top: 16px;
    padding: 38px 20px 24px;
  }

  .pcx__faq-intro {
    display: block;
  }

  .pcx__faq-intro > p:nth-of-type(2) {
    margin-top: 17px;
  }

  .pcx__help-card {
    max-width: none;
    margin-top: 22px;
  }

  .pcx__question summary {
    grid-template-columns: minmax(0, 1fr) 30px;
    gap: 14px;
    min-height: 62px;
    font-size: 19px;
  }

  .pcx__question summary i {
    width: 30px;
    height: 30px;
  }

  .pcx__answer {
    padding-right: 38px;
  }

  .pcx__policy-links {
    align-items: flex-start;
  }

  .pcx__policy-links > span {
    flex-basis: 100%;
  }

  .pcx__closing {
    gap: 24px;
    margin-top: 16px;
    padding: 34px 22px;
  }

  .pcx__closing h2 {
    font-size: 34px;
  }

  .pcx__closing-button {
    min-height: 54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pcx__step,
  .pcx__question summary i {
    transition: none;
  }
}

/* CXACXC uses one clear, contemporary type system throughout conversion UI. */
.pcx__step h3,
.pcx__question summary {
  font-family: var(--sort-body-font, "Manrope"), Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
}
