/* =================================================================
   Portal do Candidato — CSS puro
   Sem framework. Funciona em qualquer hospedagem estática.
   ================================================================= */

/* ── Reset & Base ──────────────────────────────────────────────── */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --brand:        #4f46e5;
  --brand-dark:   #4338ca;
  --brand-light:  #eff6ff;
  --text:         #0f172a;
  --text-muted:   #64748b;
  --text-light:   #94a3b8;
  --border:       #e2e8f0;
  --bg:           #f8fafc;
  --white:        #ffffff;
  --radius-sm:    8px;
  --radius:       14px;
  --radius-lg:    20px;
  --shadow-sm:    0 1px 4px rgba(0,0,0,0.04);
  --shadow:       0 4px 16px rgba(0,0,0,0.06);
  --shadow-lg:    0 12px 40px rgba(0,0,0,0.10);
  --transition:   0.18s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { line-height: 1.25; }

a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

input, select, textarea, button {
  font-family: inherit;
  font-size: inherit;
}

button { cursor: pointer; border: none; background: none; }

img { max-width: 100%; }

/* ── Header ────────────────────────────────────────────────────── */

.p-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.p-header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
}

.p-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.p-logo:hover { text-decoration: none; }

.p-logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--brand);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}

.p-logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.p-logo-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
}

.p-logo-sub {
  font-size: 11px;
  color: var(--text-muted);
}

/* ── Main / SPA root ───────────────────────────────────────────── */

#app-root {
  min-height: calc(100vh - 64px - 60px);
}

/* ── Loader inicial ────────────────────────────────────────────── */

.p-loader-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  height: 60vh;
  color: var(--text-muted);
  font-size: 14px;
}

.p-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--border);
  border-top-color: var(--brand);
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ── Hero ──────────────────────────────────────────────────────── */

.p-hero {
  background: linear-gradient(135deg, #4f46e5 0%, #6366f1 50%, #818cf8 100%);
  color: var(--white);
  padding: 60px 24px 48px;
  text-align: center;
}

.p-hero-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.p-hero-sub {
  font-size: 16px;
  opacity: 0.88;
  max-width: 520px;
  margin: 0 auto 28px;
}

.p-search-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 680px;
  margin: 0 auto;
}

.p-search-wrap {
  position: relative;
}

.p-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

.p-search-input {
  width: 100%;
  padding: 14px 16px 14px 44px;
  font-size: 15px;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.15);
  color: var(--white);
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.p-search-input::placeholder { color: rgba(255,255,255,0.65); }

.p-search-input:focus {
  outline: none;
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.22);
}

.p-filter-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.p-filter-select {
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.15);
  color: var(--white);
  cursor: pointer;
  backdrop-filter: blur(8px);
  flex: 1;
  min-width: 140px;
}

.p-filter-select option { color: var(--text); background: var(--white); }
.p-filter-select:focus { outline: 2px solid rgba(255,255,255,0.5); }

/* ── Section ───────────────────────────────────────────────────── */

.p-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px;
}

/* ── Vaga — Grid de cards ─────────────────────────────────────── */

.p-jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

/* ── Card de vaga ──────────────────────────────────────────────── */

.p-job-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.p-job-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: #c7d2fe;
}

.p-job-header {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.p-job-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--brand-light);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.p-job-info { flex: 1; min-width: 0; }

.p-job-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.p-job-meta {
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.p-job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.p-tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.p-tag-regime { background: #f0fdf4; color: #166534; }
.p-tag-level  { background: #eff6ff; color: #1e40af; }
.p-tag-qty    { background: #fef3c7; color: #92400e; }
.p-tag-unit   { background: #f5f3ff; color: #6d28d9; }

.p-job-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

/* ── Botões ────────────────────────────────────────────────────── */

.p-btn-apply {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  background: var(--brand);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  width: 100%;
  margin-top: auto;
}

.p-btn-apply:hover { background: var(--brand-dark); transform: translateY(-1px); }
.p-btn-apply:active { transform: translateY(0); }
.p-btn-apply:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.p-btn-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  background: var(--white);
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.p-btn-back:hover { background: var(--bg); color: var(--text); }

.p-btn-next, .p-btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  background: var(--brand);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition);
}

.p-btn-next:hover, .p-btn-submit:hover { background: var(--brand-dark); }
.p-btn-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

/* ── Empty / Loading ───────────────────────────────────────────── */

.p-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 60px 24px;
  text-align: center;
  color: var(--text-muted);
}

.p-empty h3 { font-size: 18px; color: var(--text); margin: 0; }
.p-empty p  { font-size: 14px; max-width: 360px; }

.p-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 60px 24px;
  color: var(--text-muted);
  font-size: 14px;
}

/* ── Candidatura — Layout ──────────────────────────────────────── */

.p-apply-wrapper {
  max-width: 780px;
  margin: 0 auto;
  padding: 32px 24px 60px;
}

/* ── Breadcrumb ────────────────────────────────────────────────── */

.p-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 13px;
  color: var(--text-muted);
}

.p-breadcrumb-link {
  background: none;
  border: none;
  color: var(--brand);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  transition: color var(--transition);
}

.p-breadcrumb-link:hover { color: var(--brand-dark); }
.p-breadcrumb-sep { color: var(--border); }
.p-breadcrumb-current { font-weight: 600; color: var(--text); max-width: 300px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ── Cabeçalho da vaga (apply) ─────────────────────────────────── */

.p-vacancy-header {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-sm);
}

.p-vacancy-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
}

.p-vacancy-meta {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.p-vacancy-meta-sep { color: var(--border); }
.p-vacancy-badges { display: flex; gap: 6px; flex-wrap: wrap; align-self: flex-start; }

/* ── Detalhes da vaga ──────────────────────────────────────────── */

.p-vacancy-details {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-sm);
}

.p-vd-section h3 {
  font-size: 13px;
  font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.p-vd-section p {
  font-size: 14px;
  color: var(--text-muted);
  white-space: pre-wrap;
  line-height: 1.6;
}

/* ── Stepper ───────────────────────────────────────────────────── */

.p-stepper {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.p-step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  flex: 1;
  border-right: 1px solid var(--border);
  cursor: default;
  transition: background var(--transition);
}

.p-step:last-child { border-right: none; }

.p-step-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--border);
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}

.p-step-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.p-step.active {
  background: var(--brand-light);
}

.p-step.active .p-step-circle {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}

.p-step.active .p-step-label { color: var(--brand); font-weight: 700; }

.p-step.done .p-step-circle {
  background: #d1fae5;
  border-color: #10b981;
  color: #065f46;
}

.p-step.done .p-step-label { color: #065f46; }

/* ── Form Card ─────────────────────────────────────────────────── */

.p-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}

.p-form-section-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
}

.p-form-hint {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* ── Form Grid ─────────────────────────────────────────────────── */

.p-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.p-form-grid .span-2 { grid-column: span 2; }

.p-label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.p-label-hint {
  font-size: 11px;
  font-weight: 400;
  color: var(--text-muted);
}

.p-input {
  padding: 10px 12px;
  font-size: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}

.p-input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.12);
}

.p-input::placeholder { color: var(--text-light); }

textarea.p-input {
  resize: vertical;
  min-height: 100px;
}

.p-input:disabled {
  background: var(--bg);
  color: var(--text-muted);
}

/* ── Resume drop ───────────────────────────────────────────────── */

.p-resume-drop {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 13px;
  background: var(--bg);
}

.p-resume-drop:hover, .p-resume-drop.drag-over {
  border-color: var(--brand);
  background: var(--brand-light);
  color: var(--brand);
}

.p-resume-drop.has-file {
  border-color: #10b981;
  background: #f0fdf4;
  color: #065f46;
}

.p-resume-drop small { font-size: 11px; color: var(--text-light); }

.p-resume-filename {
  font-weight: 700;
  font-size: 14px;
}

.p-resume-remove {
  background: none;
  border: 1px solid #fca5a5;
  color: #dc2626;
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 4px;
  transition: all var(--transition);
}

.p-resume-remove:hover { background: #fef2f2; }

/* ── Perguntas técnicas ────────────────────────────────────────── */

.p-no-questions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 40px 0;
  text-align: center;
  color: var(--text-muted);
}

.p-questions-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.p-question { display: flex; flex-direction: column; gap: 8px; }

.p-q-num {
  display: inline-flex;
  width: 22px;
  height: 22px;
  background: var(--brand);
  color: var(--white);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  align-items: center;
  justify-content: center;
  margin-right: 6px;
  flex-shrink: 0;
}

.p-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.p-radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  transition: all var(--transition);
}

.p-radio-label:hover { border-color: var(--brand); background: var(--brand-light); }
.p-radio-label input[type="radio"] { accent-color: var(--brand); }
.p-radio-label:has(input:checked) { border-color: var(--brand); background: var(--brand-light); color: var(--brand); font-weight: 700; }

.p-scale-group {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.p-scale-btn {
  width: 44px;
  height: 44px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--white);
  cursor: pointer;
  transition: all var(--transition);
}

.p-scale-btn:hover { border-color: var(--brand); color: var(--brand); }
.p-scale-btn.active { background: var(--brand); color: var(--white); border-color: var(--brand); }
.p-scale-hint { font-size: 11px; color: var(--text-muted); }

/* ── Testes de perfil (sliders) ────────────────────────────────── */

.p-profile-block {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 16px;
}

.p-profile-block:last-child { margin-bottom: 0; }

.p-profile-block h3 {
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.p-profile-desc {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.p-sliders { display: flex; flex-direction: column; gap: 14px; }

.p-slider-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.p-slider-info {
  flex: 0 0 180px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.p-slider-label { font-size: 13px; font-weight: 700; color: var(--text); }
.p-slider-desc  { font-size: 11px; color: var(--text-muted); line-height: 1.4; }

.p-slider-control {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
}

.p-range {
  -webkit-appearance: none;
  appearance: none;
  flex: 1;
  height: 6px;
  border-radius: 4px;
  background: var(--border);
  cursor: pointer;
}

.p-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--brand);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--brand);
  cursor: grab;
}

.p-range::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--brand);
  border: 2px solid var(--white);
  cursor: grab;
}

.p-range-value {
  font-size: 15px;
  font-weight: 800;
  color: var(--brand);
  width: 24px;
  text-align: right;
}

/* ── Revisão ───────────────────────────────────────────────────── */

.p-review-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 20px;
}

.p-review-section {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}

.p-review-section:last-child { border-bottom: none; }

.p-review-section h3 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--brand);
  margin-bottom: 12px;
}

.p-review-grid {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 8px 16px;
}

.p-review-key {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  padding-top: 2px;
}

.p-review-val {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  word-break: break-word;
}

/* ── Consentimento ─────────────────────────────────────────────── */

.p-consent-label {
  display: flex;
  gap: 12px;
  padding: 16px;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 13px;
  color: var(--text);
  line-height: 1.5;
  align-items: flex-start;
  margin-top: 4px;
}

.p-consent-label input[type="checkbox"] {
  accent-color: var(--brand);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}

/* ── Erro ──────────────────────────────────────────────────────── */

.p-error-box {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: #b91c1c;
  font-size: 13px;
  font-weight: 500;
  margin-top: 16px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

/* ── Form Nav ──────────────────────────────────────────────────── */

.p-form-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.p-nav-spacer { flex: 1; }

/* ── Sucesso ───────────────────────────────────────────────────── */

.p-success-screen {
  max-width: 520px;
  margin: 60px auto;
  padding: 0 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.p-success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), #818cf8);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(79,70,229,0.3);
}

.p-success-title {
  font-size: 26px;
  font-weight: 900;
  color: var(--text);
}

.p-success-msg { font-size: 15px; color: var(--text-muted); }
.p-success-hint { font-size: 13px; color: var(--text-light); }

/* ── Empty / Not found ─────────────────────────────────────────── */

.p-empty-screen {
  max-width: 480px;
  margin: 60px auto;
  padding: 0 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
}

.p-empty-screen h2 { font-size: 20px; color: var(--text); }
.p-empty-screen p  { font-size: 14px; }

.p-empty-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  margin-bottom: 4px;
}

/* ── Footer ────────────────────────────────────────────────────── */

.p-footer {
  border-top: 1px solid var(--border);
  background: var(--white);
  padding: 20px 24px;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}

/* ── Responsive ────────────────────────────────────────────────── */

@media (max-width: 640px) {
  .p-form-card { padding: 20px 16px; }
  .p-form-grid { grid-template-columns: 1fr; }
  .p-form-grid .span-2 { grid-column: span 1; }
  .p-vacancy-header { flex-direction: column; }
  .p-stepper { flex-direction: column; gap: 0; }
  .p-step { border-right: none; border-bottom: 1px solid var(--border); }
  .p-step:last-child { border-bottom: none; }
  .p-step-label { font-size: 11px; }
  .p-slider-row { flex-direction: column; align-items: flex-start; gap: 8px; }
  .p-slider-info { flex: none; width: 100%; }
  .p-review-grid { grid-template-columns: 1fr; gap: 4px; }
  .p-review-key { color: var(--brand); font-size: 11px; text-transform: uppercase; }
  .p-filter-row { flex-direction: column; }
  .p-filter-select { min-width: unset; }
  .p-hero { padding: 40px 16px 32px; }
  .p-apply-wrapper { padding: 20px 16px 48px; }
}

@media (max-width: 480px) {
  .p-jobs-grid { grid-template-columns: 1fr; }
}
