
/* Apex Interpreter CRM v1.4 — Frontend Recruiting Experience */
.apex-recruiting-intro,
.apex-interpreter-form-shell {
  width: min(1120px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

.apex-recruiting-intro {
  margin-bottom: 24px;
  padding: 28px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(248,246,240,.78));
  border: 1px solid rgba(9, 30, 66, .10);
  box-shadow: 0 18px 48px rgba(15, 23, 42, .07);
}

.apex-recruiting-kicker {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 7px 12px;
  background: #fff4df;
  color: #8a5b00;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.apex-recruiting-intro h2 {
  margin: 0 0 10px;
  color: #071d40;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -.035em;
}

.apex-recruiting-intro > p {
  margin: 0 0 20px;
  max-width: 860px;
  color: #536170;
  font-size: 1.04rem;
  line-height: 1.65;
}

.apex-recruiting-path {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 14px;
}

.apex-recruiting-path div {
  position: relative;
  border-radius: 22px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(9, 30, 66, .10);
  padding: 18px;
  box-shadow: 0 12px 30px rgba(15,23,42,.055);
  overflow: hidden;
}

.apex-recruiting-path div::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #f5a800, #00979c);
  opacity: .8;
}

.apex-recruiting-path span {
  display: inline-flex;
  border-radius: 999px;
  background: #fff4df;
  color: #8a5b00;
  padding: 7px 11px;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.apex-recruiting-path strong {
  display: block;
  color: #071d40;
  font-size: 1.08rem;
  line-height: 1.15;
  margin-bottom: 8px;
}

.apex-recruiting-path p {
  margin: 0;
  color: #536170;
  font-size: .92rem;
  line-height: 1.5;
}

.apex-interpreter-form-shell {
  padding: 28px;
  border-radius: 30px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(9, 30, 66, .10);
  box-shadow: 0 18px 48px rgba(15,23,42,.07);
}

.apex-form-section {
  margin: 0 0 22px;
  padding: 0 0 18px;
  border-bottom: 1px solid rgba(9, 30, 66, .08);
}

.apex-form-section:last-of-type {
  border-bottom: 0;
}

.apex-form-section h3 {
  margin: 0 0 14px;
  color: #071d40;
  font-size: 1.25rem;
  line-height: 1.15;
  letter-spacing: -.02em;
}

.apex-form-section h3::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f5a800, #00979c);
  vertical-align: 2px;
}

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

.apex-form-field.full {
  grid-column: 1 / -1;
}

.apex-form-field label {
  display: block;
  color: #071d40;
  font-weight: 850;
  font-size: .92rem;
  margin-bottom: 7px;
}

.apex-form-field input,
.apex-form-field select,
.apex-form-field textarea {
  width: 100%;
  border: 1px solid rgba(9, 30, 66, .16);
  border-radius: 16px;
  padding: 12px 13px;
  background: #fff;
  color: #132238;
  box-shadow: none;
  font: inherit;
}

.apex-form-field textarea {
  min-height: 112px;
}

.apex-form-field input:focus,
.apex-form-field select:focus,
.apex-form-field textarea:focus {
  outline: none;
  border-color: rgba(0,151,156,.55);
  box-shadow: 0 0 0 3px rgba(0,151,156,.10);
}

.apex-page-warning {
  margin: 18px 0;
  padding: 14px 16px;
  border-radius: 18px;
  background: #fbfaf6;
  border: 1px solid rgba(9, 30, 66, .10);
  color: #536170;
  line-height: 1.55;
}

.apex-button.apex-recruiting-submit {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0 24px;
  border: 0;
  background: linear-gradient(135deg, #071d40, #007d82);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.apex-form-notice {
  margin: 0 0 18px;
  border-radius: 16px;
  padding: 14px 16px;
  font-weight: 800;
}

.apex-form-notice.success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.apex-form-notice.error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

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

@media (max-width: 700px) {
  .apex-recruiting-intro,
  .apex-interpreter-form-shell {
    width: min(100% - 24px, 1120px);
    padding: 20px;
    border-radius: 24px;
  }

  .apex-recruiting-path,
  .apex-form-grid {
    grid-template-columns: 1fr;
  }
}
