.qsc-careers-form,
.qsc-careers-form * { box-sizing: border-box; }

.qsc-careers-form {
  --qsc-ink: #111111;
  --qsc-gold: #D4C63F;
  --qsc-line: #deded7;
  --qsc-soft: #f7f7f3;
  --qsc-muted: #687078;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  color: var(--qsc-ink);
  font-family: Inter, Arial, sans-serif;
}

.qsc-honeypot { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

.qsc-notice {
  max-width: 920px;
  margin: 0 auto 24px;
  padding: 18px 20px;
  border-radius: 12px;
  display: grid;
  gap: 5px;
  font-family: Inter, Arial, sans-serif;
  border-left: 5px solid currentColor;
}
.qsc-notice strong { font-size: 16px; }
.qsc-notice span { font-size: 14px; line-height: 1.55; }
.qsc-notice--success { background: #eef8ef; color: #205d2a; }
.qsc-notice--warning { background: #fff8e7; color: #805d00; }
.qsc-notice--error { background: #fff0ef; color: #8a2f26; }

.qsc-form-section {
  background: #fff;
  border: 1px solid var(--qsc-line);
  border-radius: 18px;
  padding: 34px;
  margin: 0 0 22px;
  box-shadow: 0 12px 36px rgba(17,17,17,.055);
}

.qsc-section-heading {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.qsc-section-heading > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  background: var(--qsc-ink);
  color: var(--qsc-gold);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .08em;
}
.qsc-section-heading p {
  margin: 0 0 4px;
  color: var(--qsc-muted);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 11px;
  font-weight: 800;
}
.qsc-section-heading h2 {
  margin: 0;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.12;
  font-weight: 800;
}

.qsc-grid { display: grid; gap: 18px; }
.qsc-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.qsc-field--full { grid-column: 1 / -1; }

.qsc-field { min-width: 0; }
.qsc-field label,
.qsc-fieldset legend,
.qsc-equipment-row legend {
  display: block;
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.4;
}
.qsc-field label > span,
.qsc-fieldset legend > span,
.qsc-equipment-row legend > span { color: #9b2222; }
.qsc-field label small {
  display: block;
  margin-top: 3px;
  color: var(--qsc-muted);
  font-size: 11px;
  font-weight: 500;
}

.qsc-field input[type="text"],
.qsc-field input[type="email"],
.qsc-field input[type="tel"],
.qsc-field input[type="date"],
.qsc-field input[type="month"],
.qsc-field input[type="file"],
.qsc-field textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid #cfcfc8;
  border-radius: 10px;
  background: #fff;
  color: var(--qsc-ink);
  padding: 13px 14px;
  font: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.qsc-field textarea { min-height: 110px; resize: vertical; line-height: 1.55; }
.qsc-field input:focus,
.qsc-field textarea:focus {
  border-color: #9f9736;
  box-shadow: 0 0 0 3px rgba(212,198,63,.18);
}

.qsc-fieldset,
.qsc-equipment-row { border: 0; padding: 0; margin: 24px 0 0; min-width: 0; }
.qsc-choice-row { display: flex; gap: 10px; }
.qsc-choice-row--wrap { flex-wrap: wrap; }
.qsc-choice,
.qsc-check,
.qsc-equipment-options label {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  user-select: none;
}
.qsc-choice input,
.qsc-check input,
.qsc-equipment-options input { accent-color: var(--qsc-ink); width: 17px; height: 17px; }
.qsc-choice {
  min-width: 96px;
  border: 1px solid var(--qsc-line);
  border-radius: 10px;
  padding: 11px 13px;
  background: var(--qsc-soft);
  font-size: 14px;
  font-weight: 650;
}
.qsc-check {
  border: 1px solid var(--qsc-line);
  border-radius: 10px;
  padding: 11px 13px;
  background: var(--qsc-soft);
  font-size: 13px;
  line-height: 1.4;
}

.qsc-question {
  padding: 18px 0;
  margin-top: 0;
  border-bottom: 1px solid #ecece7;
}
.qsc-question:last-child { border-bottom: 0; }

.qsc-duty-note,
.qsc-section-copy {
  color: #4f555a;
  font-size: 14px;
  line-height: 1.65;
}
.qsc-duty-note {
  margin: 18px 0 8px;
  padding: 16px 18px;
  background: var(--qsc-soft);
  border-left: 4px solid var(--qsc-gold);
  border-radius: 8px;
}
.qsc-section-copy { margin: -10px 0 22px; }

.qsc-equipment-table {
  border: 1px solid var(--qsc-line);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 24px;
}
.qsc-equipment-row {
  margin: 0;
  padding: 18px;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid var(--qsc-line);
}
.qsc-equipment-row:last-child { border-bottom: 0; }
.qsc-equipment-row legend { margin: 0; }
.qsc-equipment-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 8px;
}
.qsc-equipment-options label {
  padding: 9px 10px;
  border-radius: 8px;
  background: var(--qsc-soft);
  font-size: 12px;
  line-height: 1.25;
}

.qsc-subcard {
  margin: 0 0 18px;
  padding: 22px;
  border-radius: 14px;
  background: var(--qsc-soft);
  border: 1px solid #e5e5de;
}
.qsc-subcard h3 { margin: 0 0 18px; font-size: 16px; }
.qsc-divider { height: 1px; background: var(--qsc-line); margin: 26px 0 10px; }
.qsc-conditional[hidden] { display: none !important; }

.qsc-policy-box {
  padding: 25px;
  border-radius: 14px;
  background: var(--qsc-ink);
  color: #fff;
}
.qsc-policy-eyebrow {
  margin: 0 0 7px;
  color: var(--qsc-gold);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 800;
}
.qsc-policy-box h2 { margin: 0 0 10px; font-size: 24px; line-height: 1.2; }
.qsc-policy-box > p:not(.qsc-policy-eyebrow) { margin: 0 0 18px; color: #d7d7d3; line-height: 1.6; font-size: 14px; }
.qsc-policy-box .qsc-check { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); color: #fff; }
.qsc-policy-box .qsc-check input { accent-color: var(--qsc-gold); }

.qsc-certification { margin: 18px 0; }
.qsc-certification .qsc-check { width: 100%; padding: 15px; }

.qsc-submit {
  width: 100%;
  min-height: 58px;
  border: 0;
  border-radius: 12px;
  background: var(--qsc-gold);
  color: var(--qsc-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px 22px;
  font: inherit;
  font-weight: 850;
  font-size: 15px;
  cursor: pointer;
  transition: transform .18s ease, filter .18s ease;
}
.qsc-submit:hover { transform: translateY(-1px); filter: brightness(.98); }
.qsc-submit:disabled { opacity: .72; cursor: wait; transform: none; }
.qsc-privacy-note { margin: 11px 0 0; text-align: center; color: var(--qsc-muted); font-size: 12px; }

@media (max-width: 760px) {
  .qsc-form-section { padding: 24px 18px; border-radius: 14px; }
  .qsc-grid--2 { grid-template-columns: 1fr; }
  .qsc-section-heading { gap: 12px; }
  .qsc-equipment-row { grid-template-columns: 1fr; gap: 10px; }
  .qsc-equipment-options { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .qsc-choice-row { flex-wrap: wrap; }
  .qsc-choice { min-width: 88px; }
  .qsc-subcard { padding: 18px 14px; }
}

@media (max-width: 440px) {
  .qsc-equipment-options { grid-template-columns: 1fr; }
  .qsc-choice { flex: 1 1 30%; }
}

/* Built-in human verification CAPTCHA */
.qsc-captcha-box {
  margin: 18px 0;
  padding: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  border: 1px solid var(--qsc-line);
  border-radius: 12px;
  background: var(--qsc-soft);
}
.qsc-captcha-copy { min-width: 0; }
.qsc-captcha-eyebrow {
  margin: 0 0 5px;
  color: var(--qsc-muted);
  font-size: 10px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.qsc-captcha-copy label {
  display: block;
  margin: 0 0 5px;
  font-size: 13px;
  font-weight: 800;
}
.qsc-captcha-copy label span { color: #9b2222; }
.qsc-captcha-copy > p:last-child {
  margin: 0;
  color: var(--qsc-muted);
  font-size: 12px;
  line-height: 1.5;
}
.qsc-captcha-challenge {
  display: flex;
  align-items: center;
  gap: 10px;
}
.qsc-captcha-question {
  white-space: nowrap;
  font-size: 16px;
  font-weight: 800;
}
.qsc-captcha-challenge input {
  width: 74px;
  min-height: 48px;
  padding: 10px;
  border: 1px solid #cfcfc8;
  border-radius: 10px;
  background: #fff;
  color: var(--qsc-ink);
  font: inherit;
  font-size: 16px;
  text-align: center;
  outline: none;
}
.qsc-captcha-challenge input:focus {
  border-color: #9f9736;
  box-shadow: 0 0 0 3px rgba(212,198,63,.18);
}
@media (max-width: 640px) {
  .qsc-captcha-box { grid-template-columns: 1fr; gap: 13px; }
  .qsc-captcha-challenge { justify-content: flex-start; }
}
