.pja-shell,
.pja-shell * {
  box-sizing: border-box;
}

.pja-shell {
  --pja-primary: #0f766e;
  --pja-bg: #f4f7f9;
  --pja-accent: #d9f2ee;
  --pja-ink: #102a2e;
  --pja-muted: #64767a;
  --pja-border: #dfe7e8;
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-inline-start: calc(50% - 50vw);
  overflow: hidden;
  color: var(--pja-ink);
  background: var(--pja-bg);
  font-family: inherit;
  line-height: 1.75;
  text-align: right;
}

.pja-shell button,
.pja-shell input,
.pja-shell select {
  font: inherit;
}

.pja-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 54px 0 72px;
}

.pja-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 260px;
  padding: 54px clamp(28px, 6vw, 76px);
  border-radius: 30px;
  color: #fff;
  background:
    radial-gradient(circle at 15% 25%, rgba(255, 255, 255, .16), transparent 28%),
    linear-gradient(125deg, #083a3a, var(--pja-primary));
  box-shadow: 0 24px 70px rgba(16, 42, 46, .14);
}

.pja-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset-inline-start: -35px;
  bottom: -105px;
  width: 260px;
  height: 260px;
  border: 42px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
}

.pja-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, .1);
  font-size: 13px;
  font-weight: 700;
}

.pja-eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #79e2c7;
  box-shadow: 0 0 0 5px rgba(121, 226, 199, .12);
}

.pja-hero h1 {
  margin: 20px 0 4px;
  color: inherit;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 850;
  line-height: 1.25;
  letter-spacing: -.035em;
}

.pja-hero p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, .76);
  font-size: 17px;
}

.pja-progress {
  position: relative;
  width: min(860px, calc(100% - 40px));
  margin: -31px auto 34px;
  padding: 24px 42px 20px;
  border: 1px solid rgba(223, 231, 232, .9);
  border-radius: 20px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 14px 40px rgba(16, 42, 46, .09);
  backdrop-filter: blur(12px);
}

.pja-progress ol {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pja-progress li {
  display: flex;
  width: 130px;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: #819093;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  transition: color .25s ease;
}

.pja-progress li:first-child { align-items: flex-start; text-align: right; }
.pja-progress li:last-child { align-items: flex-end; text-align: left; }

.pja-progress li b {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 2px solid #d9e2e3;
  border-radius: 50%;
  color: #718184;
  background: #fff;
  font-size: 13px;
  transition: all .25s ease;
}

.pja-progress li.is-active,
.pja-progress li.is-done { color: var(--pja-primary); }

.pja-progress li.is-active b,
.pja-progress li.is-done b {
  border-color: var(--pja-primary);
  color: #fff;
  background: var(--pja-primary);
  box-shadow: 0 0 0 5px var(--pja-accent);
}

.pja-progress__line {
  position: absolute;
  z-index: 1;
  top: 40px;
  right: 59px;
  left: 59px;
  height: 2px;
  overflow: hidden;
  background: #dfe7e8;
}

.pja-progress__line span {
  display: block;
  width: 0;
  height: 100%;
  margin-right: 0;
  background: var(--pja-primary);
  transition: width .4s ease;
}

.pja-card {
  padding: clamp(26px, 5vw, 54px);
  border: 1px solid var(--pja-border);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 18px 55px rgba(16, 42, 46, .07);
}

.pja-step[hidden] { display: none !important; }
.pja-step.is-active { animation: pja-rise .42s ease both; }

@keyframes pja-rise {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.pja-section-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
}

.pja-section-heading > span {
  display: grid;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  place-items: center;
  border-radius: 17px;
  color: var(--pja-primary);
  background: var(--pja-accent);
  font-size: 15px;
  font-weight: 800;
}

.pja-section-heading h2 {
  margin: 0;
  color: var(--pja-ink);
  font-size: clamp(23px, 3vw, 32px);
  line-height: 1.3;
  outline: none;
}

.pja-section-heading p {
  margin: 2px 0 0;
  color: var(--pja-muted);
  font-size: 14px;
}

.pja-prose,
.pja-job-description {
  color: #43575a;
}

.pja-prose > :first-child { margin-top: 0; }
.pja-prose > :last-child { margin-bottom: 0; }
.pja-prose ul { padding-right: 20px; padding-left: 0; }
.pja-prose li::marker { color: var(--pja-primary); }

.pja-job-description {
  max-width: 900px;
  margin-bottom: 30px;
  font-size: 17px;
}

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

.pja-info-box {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--pja-border);
  border-radius: 19px;
  background: #fbfcfc;
}

.pja-info-icon {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 13px;
  place-items: center;
  border-radius: 12px;
  color: var(--pja-primary);
  background: var(--pja-accent);
  font-weight: 800;
}

.pja-info-box h3,
.pja-extra h3 {
  margin: 0 0 7px;
  color: var(--pja-ink);
  font-size: 16px;
}

.pja-info-box p { margin: 0; }

.pja-extra {
  margin-top: 18px;
  padding: 22px 24px;
  border-inline-start: 4px solid var(--pja-primary);
  border-radius: 14px;
  background: var(--pja-accent);
}

.pja-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 34px;
}

.pja-actions--split { justify-content: space-between; gap: 12px; }

.pja-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 11px 23px;
  border: 1px solid transparent;
  border-radius: 13px;
  cursor: pointer;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.pja-button:hover { transform: translateY(-1px); }
.pja-button:focus-visible { outline: 3px solid color-mix(in srgb, var(--pja-primary) 25%, transparent); outline-offset: 3px; }
.pja-button:disabled { cursor: wait; opacity: .68; transform: none; }
.pja-button--primary { color: #fff; background: var(--pja-primary); box-shadow: 0 10px 25px color-mix(in srgb, var(--pja-primary) 24%, transparent); }
.pja-button--primary:hover { color: #fff; filter: brightness(.94); }
.pja-button--ghost { border-color: var(--pja-border); color: #43575a; background: #fff; }
.pja-button.is-loading::before { content: ""; width: 16px; height: 16px; border: 2px solid currentColor; border-top-color: transparent; border-radius: 50%; animation: pja-spin .7s linear infinite; }
@keyframes pja-spin { to { transform: rotate(360deg); } }

.pja-field-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pja-field label {
  display: block;
  margin-bottom: 7px;
  color: var(--pja-ink);
  font-size: 14px;
  font-weight: 800;
}

.pja-field em,
.pja-upload em { color: #c0362c; font-style: normal; }

.pja-field input,
.pja-field select,
.pja-phone-row input,
.pja-phone-row select {
  width: 100%;
  min-height: 50px;
  padding: 10px 14px;
  border: 1px solid #cfdadb;
  border-radius: 12px;
  color: var(--pja-ink);
  background: #fff;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.pja-field input:focus,
.pja-field select:focus,
.pja-phone-row input:focus,
.pja-phone-row select:focus {
  border-color: var(--pja-primary);
  box-shadow: 0 0 0 4px var(--pja-accent);
}

.pja-field.has-error input,
.pja-field.has-error select { border-color: #c0362c; }

.pja-field-error,
.pja-upload-error {
  display: block;
  min-height: 20px;
  margin-top: 4px;
  color: #a52b25;
  font-size: 12px;
}

.pja-trap { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(1px, 1px, 1px, 1px) !important; }
.pja-captcha { display: flex; justify-content: flex-start; margin-top: 20px; }

.pja-form-message {
  display: none;
  margin-top: 18px;
  padding: 12px 15px;
  border: 1px solid #f0c7c3;
  border-radius: 11px;
  color: #8e2822;
  background: #fff5f4;
  font-size: 14px;
}
.pja-form-message.is-visible { display: block; }

.pja-upload-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.pja-upload {
  position: relative;
  display: flex;
  min-height: 260px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 22px;
  border: 2px dashed #c8d5d6;
  border-radius: 18px;
  cursor: pointer;
  background: #fbfcfc;
  text-align: center;
  outline: none;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.pja-upload:hover,
.pja-upload:focus-visible { border-color: var(--pja-primary); background: color-mix(in srgb, var(--pja-accent) 55%, white); transform: translateY(-1px); }
.pja-upload.has-error { border-color: #c0362c; background: #fffafa; }
.pja-upload.has-file { border-style: solid; border-color: var(--pja-primary); }
.pja-upload input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.pja-upload strong { margin-top: 12px; color: var(--pja-ink); }
.pja-upload small { color: var(--pja-muted); }

.pja-upload__preview {
  display: grid;
  width: 108px;
  height: 108px;
  overflow: hidden;
  place-items: center;
  border-radius: 18px;
  color: var(--pja-primary);
  background: var(--pja-accent);
}

.pja-upload__preview img { width: 100%; height: 100%; object-fit: cover; }
.pja-upload__icon { font-size: 36px; font-weight: 300; }

.pja-phone-field { max-width: 700px; margin-top: 28px; }
.pja-phone-row { display: grid; grid-template-columns: 165px minmax(0, 1fr); gap: 10px; direction: ltr; }
.pja-phone-row input { direction: ltr; text-align: left; }
.pja-phone-row select { direction: rtl; }
.pja-phone-field > small { display: block; margin-top: 5px; color: var(--pja-muted); font-size: 12px; }

.pja-privacy-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 19px;
  padding: 12px 15px;
  border-radius: 12px;
  color: #38585a;
  background: var(--pja-accent);
  font-size: 13px;
}
.pja-privacy-note p { margin: 0; }

.pja-result { max-width: 760px; margin: 0 auto; padding: clamp(40px, 8vw, 78px); text-align: center; }
.pja-result__icon { display: grid; width: 76px; height: 76px; margin: 0 auto 20px; place-items: center; border-radius: 50%; color: #fff; background: var(--pja-primary); box-shadow: 0 0 0 12px var(--pja-accent); font-size: 32px; }
.pja-result.is-duplicate .pja-result__icon { background: #586b6e; }
.pja-result h2 { margin: 0 0 10px; color: var(--pja-ink); font-size: 30px; outline: none; }
.pja-result p { max-width: 600px; margin: 0 auto; color: #53676a; font-size: 17px; }

@media (max-width: 760px) {
  .pja-inner { width: min(100% - 24px, 1180px); padding: 20px 0 44px; }
  .pja-hero { min-height: 220px; padding: 38px 24px 62px; border-radius: 20px; }
  .pja-progress { width: calc(100% - 20px); margin-top: -36px; padding: 19px 20px 15px; border-radius: 16px; }
  .pja-progress__line { top: 35px; right: 37px; left: 37px; }
  .pja-progress li { width: 82px; font-size: 10px; line-height: 1.35; }
  .pja-progress li b { width: 31px; height: 31px; }
  .pja-card { padding: 24px 18px; border-radius: 19px; }
  .pja-section-heading { align-items: flex-start; margin-bottom: 24px; }
  .pja-section-heading > span { width: 46px; height: 46px; flex-basis: 46px; border-radius: 14px; }
  .pja-info-grid,
  .pja-field-grid,
  .pja-upload-grid { grid-template-columns: 1fr; }
  .pja-upload { min-height: 225px; }
  .pja-phone-row { grid-template-columns: 128px minmax(0, 1fr); }
  .pja-actions--split .pja-button { flex: 1; padding-inline: 12px; }
}

@media (max-width: 420px) {
  .pja-progress { width: 100%; }
  .pja-progress li span { display: none; }
  .pja-progress li { width: 34px; }
  .pja-hero h1 { font-size: 31px; }
  .pja-phone-row { grid-template-columns: 112px minmax(0, 1fr); gap: 7px; }
}

@media (prefers-reduced-motion: reduce) {
  .pja-shell *, .pja-shell *::before, .pja-shell *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

