:root {
  --ghjf-navy: #061a33;
  --ghjf-navy-2: #0b2a4b;
  --ghjf-gold: #c5a059;
  --ghjf-text: #172033;
  --ghjf-muted: #657084;
  --ghjf-line: #dfe4eb;
  --ghjf-bg: #f7f4ee;
}

.ghjf-wrap {
  padding: 64px 20px;
  background: var(--ghjf-bg);
  font-family: inherit;
  scroll-margin-top: 100px;
}

.ghjf-card {
  width: min(980px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px);
  background: #fff;
  border: 1px solid rgba(197, 160, 89, .32);
  border-radius: 20px;
  box-shadow: 0 18px 60px rgba(6, 26, 51, .09);
}

.ghjf-heading { margin-bottom: 34px; }
.ghjf-eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--ghjf-gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
}
.ghjf-heading h2 {
  margin: 0 0 12px;
  color: var(--ghjf-navy);
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.12;
}
.ghjf-heading p {
  margin: 0;
  color: var(--ghjf-muted);
  font-size: 16px;
  line-height: 1.7;
}

.ghjf-notice {
  margin: 0 0 24px;
  padding: 14px 16px;
  border-radius: 10px;
  font-weight: 600;
}
.ghjf-success { color: #17653a; background: #eaf8f0; border: 1px solid #b8e2c9; }
.ghjf-error { color: #8b2430; background: #fff0f1; border: 1px solid #efc1c6; }

.ghjf-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.ghjf-fieldset {
  margin: 0;
  padding: 24px;
  border: 1px solid var(--ghjf-line);
  border-radius: 16px;
  background: #fcfcfc;
}
.ghjf-fieldset legend,
.ghjf-row > label {
  display: block;
  color: var(--ghjf-text);
  font-weight: 700;
}
.ghjf-fieldset legend {
  padding: 0 10px;
  margin-left: 8px;
}
.ghjf-fieldset legend span,
.ghjf-row > label span,
.ghjf-consent strong {
  color: #b63030;
}

.ghjf-job-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ghjf-job-option {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid var(--ghjf-line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  transition: .2s ease;
}
.ghjf-job-option:hover {
  border-color: var(--ghjf-gold);
  transform: translateY(-1px);
}
.ghjf-job-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.ghjf-radio-ui {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border: 2px solid #aab2be;
  border-radius: 50%;
}
.ghjf-job-option input:checked + .ghjf-radio-ui {
  border-color: var(--ghjf-gold);
  box-shadow: inset 0 0 0 5px #fff;
  background: var(--ghjf-gold);
}
.ghjf-job-option:has(input:checked) {
  border-color: var(--ghjf-gold);
  background: #fcf8ef;
}
.ghjf-job-name {
  color: var(--ghjf-navy);
  font-weight: 700;
  line-height: 1.5;
}

.ghjf-fields {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.ghjf-row {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  align-items: start;
  column-gap: 28px;
  row-gap: 10px;
}
.ghjf-row > label {
  margin: 14px 0 0;
  line-height: 1.45;
}
.ghjf-control {
  min-width: 0;
}
.ghjf-control input,
.ghjf-control textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid var(--ghjf-line);
  border-radius: 10px;
  background: #fff;
  color: var(--ghjf-text);
  font: inherit;
  box-sizing: border-box;
  transition: .2s ease;
}
.ghjf-control textarea {
  resize: vertical;
  min-height: 170px;
}
.ghjf-control input:focus,
.ghjf-control textarea:focus {
  outline: none;
  border-color: var(--ghjf-gold);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, .16);
}
.ghjf-control small {
  display: block;
  margin-top: 8px;
  color: var(--ghjf-muted);
  font-size: 13px;
}

.ghjf-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  color: var(--ghjf-muted);
  font-size: 14px;
  line-height: 1.6;
}
.ghjf-consent input {
  margin-top: 4px;
  accent-color: var(--ghjf-gold);
}

.ghjf-actions {
  display: flex;
  justify-content: flex-start;
}
.ghjf-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 26px;
  border: 0;
  border-radius: 9px;
  color: #07192f;
  background: var(--ghjf-gold);
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
  transition: .2s ease;
}
.ghjf-submit:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.ghjf-honeypot {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  overflow: hidden !important;
}

@media (max-width: 767px) {
  .ghjf-wrap { padding: 36px 14px; }
  .ghjf-card { padding: 26px 18px; border-radius: 14px; }
  .ghjf-form { gap: 22px; }
  .ghjf-fieldset { padding: 18px; }
  .ghjf-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .ghjf-row > label { margin-top: 0; }
  .ghjf-submit { width: 100%; }
}
