/* Extracted from recruiter-dashboard/post-a-job/index.html. */
body { background: linear-gradient(180deg, #eef2f0 0%, var(--canvas) 320px); }

    /* ── Form layout ── */
    .post-job-form { max-width: 820px; margin: 0 auto; display: grid; gap: 18px; }
    .form-card { background: var(--surface, #fff); border: 1px solid var(--line); border-radius: 16px; padding: 28px 26px; }
    .form-card__title { margin: 0 0 4px; font-size: 1rem; font-weight: 700; color: var(--ink); }
    .form-card__desc { margin: 0 0 16px; font-size: 0.8125rem; color: rgba(1,56,44,0.55); line-height: 1.5; }

    /* ── Labels, inputs, textareas ── */
    .form-label {
      display: block; font-size: 0.8125rem; font-weight: 600;
      color: var(--ink); margin-bottom: 6px;
    }
    .form-label--muted { font-weight: 500; color: rgba(1,56,44,0.55); }
    .form-input, .form-select, .form-textarea {
      width: 100%; border: 1px solid var(--line); border-radius: 10px;
      padding: 10px 14px; font-size: 0.875rem; font-family: inherit;
      color: var(--ink); background: #fff; transition: border-color 0.15s;
    }
    .form-input:focus-visible, .form-select:focus-visible, .form-textarea:focus-visible {
      border-color: var(--accent); outline: 2px solid rgba(5,150,105,0.18); outline-offset: 1px;
    }
    .form-input::placeholder, .form-textarea::placeholder { color: rgba(1,56,44,0.35); }
    .form-input.has-error, .form-select.has-error, .form-textarea.has-error {
      border-color: #dc2626; background: #fef2f2;
    }
    .form-input.has-error:focus-visible {
      outline-color: rgba(220,38,38,0.18); border-color: #dc2626;
    }
    .field-error {
      display: none; margin-top: 6px; font-size: 0.75rem; color: #b91c1c; font-weight: 500;
    }
    .field-error.is-visible { display: block; }
    .form-card.has-error { border-color: rgba(220,38,38,0.3); box-shadow: 0 0 0 3px rgba(220,38,38,0.06); }
    .step-banner {
      display: none; padding: 12px 14px; margin-bottom: 14px;
      background: #fef2f2; border: 1px solid rgba(220,38,38,0.25); border-radius: 12px;
      font-size: 0.8125rem; color: #b91c1c; font-weight: 500;
      align-items: center; gap: 8px;
    }
    .step-banner.is-visible { display: flex; }
    .step-banner svg { width: 16px; height: 16px; flex-shrink: 0; }
    .form-select {
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2301382c' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat; background-position: right 14px center;
      padding-right: 36px; cursor: pointer;
    }
    .form-textarea { resize: vertical; min-height: 200px; line-height: 1.55; }

    .form-group { margin-bottom: 18px; }
    .form-group:last-child { margin-bottom: 0; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .form-help { margin-top: 6px; font-size: 0.75rem; color: rgba(1,56,44,0.5); line-height: 1.4; }

    /* ── Toggle pills (radio) ── */
    .toggle-group { display: flex; flex-wrap: wrap; gap: 8px; }
    .toggle-btn {
      display: inline-flex; align-items: center; justify-content: center;
      min-height: 40px; padding: 0 18px; border-radius: 999px;
      border: 1px solid var(--line); background: #fff;
      font-size: 0.8125rem; font-weight: 600; color: var(--ink);
      cursor: pointer; transition: all 0.15s; user-select: none; position: relative;
    }
    .toggle-btn:hover { border-color: rgba(5,150,105,0.25); background: rgba(5,150,105,0.04); }
    .toggle-btn.is-active {
      background: #ecfdf5; border-color: rgba(5,150,105,0.3); color: var(--accent);
    }
    .toggle-btn input { position: absolute; opacity: 0; pointer-events: none; }

    /* ── Setup cards (work setup) ── */
    .setup-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .setup-card {
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      gap: 8px; padding: 20px 12px; border: 1px solid var(--line);
      border-radius: 14px; background: #fff; cursor: pointer;
      transition: all 0.15s; text-align: center; user-select: none; position: relative;
    }
    .setup-card:hover { border-color: rgba(5,150,105,0.2); background: rgba(5,150,105,0.03); }
    .setup-card.is-active {
      border-color: var(--accent); background: #ecfdf5;
      box-shadow: 0 0 0 2px rgba(5,150,105,0.12);
    }
    .setup-card__icon { font-size: 1.5rem; line-height: 1; color: var(--accent); }
    .setup-card__label { font-size: 0.8125rem; font-weight: 600; color: var(--ink); }
    .setup-card__desc { font-size: 0.6875rem; color: rgba(1,56,44,0.5); line-height: 1.3; }
    .setup-card input { position: absolute; opacity: 0; pointer-events: none; }

    /* ── Chips ── */
    .chips-wrap { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 10px; }
    .chip {
      display: inline-flex; align-items: center; gap: 5px;
      padding: 5px 12px; border-radius: 999px;
      background: #ecfdf5; border: 1px solid rgba(5,150,105,0.15);
      font-size: 0.8125rem; font-weight: 600; color: var(--accent);
    }
    .chip__remove {
      display: inline-flex; align-items: center; justify-content: center;
      width: 16px; height: 16px; border: none; background: none;
      font-size: 0.75rem; color: rgba(5,150,105,0.5); cursor: pointer;
      border-radius: 50%; padding: 0; line-height: 1;
    }
    .chip__remove:hover { background: rgba(5,150,105,0.12); color: var(--accent); }

    /* Selectable multi-chip grid */
    .chip-select { display: flex; flex-wrap: wrap; gap: 8px; }
    .chip-btn {
      display: inline-flex; align-items: center; gap: 6px;
      padding: 7px 14px; border-radius: 999px;
      border: 1px solid var(--line); background: #fff;
      font-size: 0.8125rem; font-weight: 600; color: var(--ink);
      cursor: pointer; transition: all 0.15s; user-select: none; position: relative;
    }
    .chip-btn:hover { border-color: rgba(5,150,105,0.25); background: rgba(5,150,105,0.04); }
    .chip-btn.is-active {
      background: #ecfdf5; border-color: rgba(5,150,105,0.3); color: var(--accent);
    }
    .chip-btn input { position: absolute; opacity: 0; pointer-events: none; }

    /* ── Salary row ── */
    .salary-row { display: grid; grid-template-columns: 1fr 1fr 120px 140px; gap: 10px; align-items: end; }

    /* ── Apply method cards ── */
    .apply-methods { display: grid; gap: 10px; }
    .apply-method {
      display: flex; align-items: flex-start; gap: 14px;
      padding: 18px 20px; border: 1px solid var(--line);
      border-radius: 14px; background: #fff; cursor: pointer;
      transition: all 0.15s; user-select: none; position: relative;
    }
    .apply-method:hover { border-color: rgba(5,150,105,0.2); background: rgba(5,150,105,0.03); }
    .apply-method.is-active {
      border-color: var(--accent); background: #ecfdf5;
      box-shadow: 0 0 0 2px rgba(5,150,105,0.12);
    }
    .apply-method__radio {
      flex-shrink: 0; width: 20px; height: 20px; margin-top: 2px;
      border: 2px solid var(--line); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      transition: border-color 0.15s;
    }
    .apply-method.is-active .apply-method__radio { border-color: var(--accent); }
    .apply-method.is-active .apply-method__radio::after {
      content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--accent);
    }
    .apply-method__content { flex: 1; min-width: 0; }
    .apply-method__title { margin: 0 0 4px; font-size: 0.875rem; font-weight: 700; color: var(--ink); }
    .apply-method__desc { margin: 0; font-size: 0.8125rem; color: rgba(1,56,44,0.55); line-height: 1.45; }
    .apply-method__field { margin-top: 10px; }
    .apply-method__field .form-input { font-size: 0.8125rem; padding: 8px 12px; }
    .apply-method input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }

    /* ── Action bar / buttons ── */
    .form-actions {
      display: flex; justify-content: space-between; align-items: center; gap: 12px;
      padding: 20px 0 4px;
    }
    .form-actions__right { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; justify-content: flex-end; }
    .btn-ghost, .btn-primary {
      display: inline-flex; align-items: center; justify-content: center;
      min-height: 44px; padding: 0 24px; border-radius: 999px;
      font-size: 0.875rem; font-weight: 600; cursor: pointer;
      transition: all 0.15s; font-family: inherit;
    }
    .btn-ghost { border: 1px solid var(--line); background: #fff; color: var(--ink); }
    .btn-ghost:hover { border-color: rgba(5,150,105,0.25); background: rgba(5,150,105,0.04); }
    .btn-primary { border: none; background: var(--accent); color: #fff; padding: 0 28px; }
    .btn-primary:hover { background: #047857; }
    .btn-primary[disabled], .btn-ghost[disabled] { opacity: 0.45; cursor: not-allowed; }

    /* ── Wizard chrome (NEW) ── */
    .wizard-progress {
      display: flex; align-items: center; gap: 8px;
      padding: 18px 22px;
      background: #fff; border: 1px solid var(--line); border-radius: 16px;
      margin-bottom: 18px;
    }
    .wizard-progress__inner {
      display: flex; align-items: center; gap: 6px; flex: 1; min-width: 0;
    }
    .wizard-step-pill {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 8px 14px; border-radius: 999px;
      border: 1px solid var(--line); background: #fff;
      font-size: 0.8125rem; font-weight: 600; color: rgba(1,56,44,0.55);
      cursor: pointer; transition: all 0.15s; user-select: none; font-family: inherit;
      white-space: nowrap;
    }
    .wizard-step-pill:hover:not([disabled]) { border-color: rgba(5,150,105,0.25); }
    .wizard-step-pill__num {
      display: inline-flex; align-items: center; justify-content: center;
      width: 22px; height: 22px; border-radius: 50%;
      background: rgba(1,56,44,0.06); color: rgba(1,56,44,0.55);
      font-size: 0.75rem; font-weight: 700;
    }
    .wizard-step-pill.is-current {
      background: #ecfdf5; border-color: rgba(5,150,105,0.3); color: var(--accent);
    }
    .wizard-step-pill.is-current .wizard-step-pill__num {
      background: var(--accent); color: #fff;
    }
    .wizard-step-pill.is-done { color: var(--accent); }
    .wizard-step-pill.is-done .wizard-step-pill__num {
      background: #ecfdf5; color: var(--accent);
    }
    .wizard-step-separator {
      flex-shrink: 0; width: 16px; height: 1px; background: rgba(1,56,44,0.15);
    }
    .wizard-autosave {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 0.75rem; color: rgba(1,56,44,0.5); font-weight: 500;
      white-space: nowrap; flex-shrink: 0;
    }
    .wizard-autosave__dot {
      width: 7px; height: 7px; border-radius: 50%; background: #10b981;
      animation: pulse-dot 2s infinite;
    }
    .wizard-autosave.is-saving .wizard-autosave__dot { background: #f59e0b; animation: none; }
    @keyframes pulse-dot {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.45; }
    }

    .wizard-step { display: none; }
    .wizard-step.is-active { display: grid; gap: 18px; animation: wizard-fade 0.22s ease-out; }
    @keyframes wizard-fade {
      from { opacity: 0; transform: translateY(6px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .wizard-step-pill.has-error {
      border-color: rgba(220,38,38,0.4); color: #b91c1c; background: #fef2f2;
    }
    .wizard-step-pill.has-error .wizard-step-pill__num {
      background: #dc2626; color: #fff;
    }
    .wizard-step__header { padding: 4px 4px 0; }
    .wizard-step__title { margin: 0 0 4px; font-size: 1.15rem; font-weight: 700; color: var(--ink); }
    .wizard-step__subtitle { margin: 0; font-size: 0.875rem; color: rgba(1,56,44,0.55); line-height: 1.5; }

    .wizard-nav {
      display: flex; justify-content: space-between; align-items: center; gap: 12px;
      padding: 16px 18px;
      background: #fff; border: 1px solid var(--line); border-radius: 16px;
      margin-top: 6px;
    }
    .wizard-nav__left, .wizard-nav__right { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }

    /* ── Override panel ── */
    .override-panel {
      border: 1px dashed rgba(5,150,105,0.25); border-radius: 12px;
      background: rgba(236,253,245,0.35); padding: 14px 16px;
      margin-bottom: 14px;
    }
    .override-panel__head {
      display: flex; justify-content: space-between; align-items: flex-start; gap: 10px;
    }
    .override-panel__label {
      font-size: 0.75rem; font-weight: 700; color: var(--accent);
      text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 6px;
      display: block;
    }
    .override-panel__summary {
      font-size: 0.875rem; color: var(--ink); line-height: 1.5; margin: 0;
    }
    .override-panel__summary em { color: rgba(1,56,44,0.55); font-style: normal; font-size: 0.8125rem; }
    .override-toggle {
      display: inline-flex; align-items: center; gap: 5px;
      padding: 6px 12px; border-radius: 999px;
      border: 1px solid rgba(5,150,105,0.25); background: #fff;
      font-size: 0.75rem; font-weight: 600; color: var(--accent);
      cursor: pointer; font-family: inherit; white-space: nowrap;
    }
    .override-toggle:hover { background: #ecfdf5; }
    .override-panel__edit { display: none; padding-top: 12px; margin-top: 12px; border-top: 1px dashed rgba(5,150,105,0.2); }
    .override-panel.is-editing .override-panel__edit { display: block; }
    .override-panel.is-editing .override-panel__summary { opacity: 0.5; }
    .override-panel.is-overridden {
      background: #ecfdf5; border-color: rgba(5,150,105,0.45); border-style: solid;
    }
    .override-panel.is-overridden .override-toggle {
      background: var(--accent); color: #fff; border-color: var(--accent);
    }
    .override-panel.is-overridden .override-toggle:hover { background: #047857; }
    .override-reset {
      display: inline-block; margin-top: 8px;
      font-size: 0.75rem; color: var(--accent); cursor: pointer; font-weight: 600;
      background: none; border: none; padding: 0; font-family: inherit;
    }
    .override-reset:hover { text-decoration: underline; }

    /* Locked field row (company details) */
    .locked-grid {
      display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px 18px;
      padding: 14px 16px; border-radius: 12px; background: rgba(1,56,44,0.035);
      margin-bottom: 6px;
    }
    .locked-field { display: flex; flex-direction: column; gap: 2px; }
    .locked-field__label { font-size: 0.7rem; color: rgba(1,56,44,0.55); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
    .locked-field__value { font-size: 0.875rem; color: var(--ink); font-weight: 600; }
    .locked-grid__note {
      display: flex; align-items: center; gap: 6px;
      padding: 0 4px 14px; font-size: 0.75rem; color: rgba(1,56,44,0.55);
    }
    .locked-grid__note svg { width: 12px; height: 12px; color: rgba(1,56,44,0.45); flex-shrink: 0; }
    .locked-grid__note a { color: var(--accent); text-decoration: none; font-weight: 600; }
    .locked-grid__note a:hover { text-decoration: underline; }

    /* Payment confirm modal */
    .payment-overlay {
      position: fixed; inset: 0; z-index: 950;
      background: rgba(1,56,44,0.5); backdrop-filter: blur(4px);
      display: flex; align-items: center; justify-content: center;
      opacity: 0; visibility: hidden; transition: opacity 0.2s, visibility 0.2s;
    }
    .payment-overlay.is-open { opacity: 1; visibility: visible; }
    .payment-modal {
      width: 100%; max-width: 460px; max-height: 86vh; overflow-y: auto;
      background: #fff; border-radius: 20px; padding: 28px;
      box-shadow: 0 24px 64px rgba(1,56,44,0.2); margin: 16px;
    }
    .payment-modal__head { margin-bottom: 16px; }
    .payment-modal__title { margin: 0 0 4px; font-size: 1.125rem; font-weight: 700; color: var(--ink); }
    .payment-modal__sub { margin: 0; font-size: 0.8125rem; color: rgba(1,56,44,0.6); line-height: 1.5; }
    .payment-modal__items { margin: 0 0 14px; padding: 12px 14px; background: #f8faf9; border-radius: 12px; }
    .payment-modal__item { display: flex; justify-content: space-between; padding: 4px 0; font-size: 0.8125rem; color: var(--ink); }
    .payment-modal__item--strong { font-weight: 700; color: var(--ink); border-top: 1px solid var(--line); margin-top: 6px; padding-top: 8px; font-size: 0.875rem; }
    .payment-modal__cardrow { display: grid; gap: 8px; margin-bottom: 14px; }
    .payment-modal__cardrow input { padding: 10px 12px; border: 1px solid var(--line); border-radius: 10px; font-size: 0.875rem; font-family: inherit; }
    .payment-modal__split { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
    .payment-modal__actions { display: flex; gap: 10px; justify-content: flex-end; margin-top: 6px; flex-wrap: wrap; }

    /* ── Plan tier cards (Packages) ── */
    .plan-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .plan-card {
      position: relative; padding: 22px 22px 20px;
      border: 1.5px solid var(--line); border-radius: 16px; background: #fff;
      cursor: pointer; transition: all 0.15s; user-select: none;
      display: flex; flex-direction: column; gap: 8px;
    }
    .plan-card:hover { border-color: rgba(5,150,105,0.3); }
    .plan-card.is-selected {
      border-color: var(--accent); background: #ecfdf5;
      box-shadow: 0 0 0 3px rgba(5,150,105,0.1);
    }
    .plan-card__badge {
      position: absolute; top: -10px; right: 16px;
      display: inline-flex; align-items: center; gap: 4px;
      padding: 4px 12px; border-radius: 999px;
      background: var(--accent); color: #fff;
      font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
    }
    .plan-card__name { font-size: 1rem; font-weight: 700; color: var(--ink); margin: 0; }
    .plan-card__price { display: flex; align-items: baseline; gap: 6px; }
    .plan-card__price strong { font-size: 1.5rem; font-weight: 700; color: var(--ink); line-height: 1; }
    .plan-card__price span { font-size: 0.8125rem; color: rgba(1,56,44,0.55); }
    .plan-card__features {
      list-style: none; padding: 0; margin: 6px 0 0;
      display: grid; gap: 6px;
    }
    .plan-card__features li {
      font-size: 0.8125rem; color: var(--ink); line-height: 1.4;
      display: flex; align-items: flex-start; gap: 6px;
    }
    .plan-card__features li::before {
      content: ""; width: 14px; height: 14px; margin-top: 2px; flex-shrink: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23059669' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
      background-repeat: no-repeat; background-position: center; background-size: contain;
    }
    .plan-card__features li.is-limit { color: rgba(1,56,44,0.55); }
    .plan-card__features li.is-limit::before {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2301382c' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' opacity='0.5'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cline x1='8' y1='12' x2='16' y2='12'/%3E%3C/svg%3E");
    }

    /* Boost rows */
    .boost-list { display: grid; gap: 8px; margin-top: 12px; }
    .boost-row {
      display: flex; align-items: center; gap: 12px;
      padding: 12px 14px; border: 1px solid var(--line); border-radius: 12px; background: #fff;
      cursor: pointer; transition: all 0.15s; position: relative;
    }
    .boost-row:hover { border-color: rgba(5,150,105,0.25); }
    .boost-row.is-active { border-color: var(--accent); background: #ecfdf5; }
    .boost-row__check {
      width: 18px; height: 18px; border: 2px solid var(--line);
      border-radius: 5px; display: flex; align-items: center; justify-content: center;
      transition: all 0.15s; flex-shrink: 0; position: relative;
    }
    .boost-row.is-active .boost-row__check { background: var(--accent); border-color: var(--accent); }
    .boost-row.is-active .boost-row__check::after {
      content: ""; position: absolute; left: 3px; top: 1px;
      width: 8px; height: 4px; border-left: 2px solid #fff; border-bottom: 2px solid #fff;
      transform: rotate(-45deg);
    }
    .boost-row input { position: absolute; opacity: 0; pointer-events: none; }
    .boost-row__info { flex: 1; min-width: 0; }
    .boost-row__label { font-size: 0.875rem; font-weight: 600; color: var(--ink); margin: 0; }
    .boost-row__desc { font-size: 0.75rem; color: rgba(1,56,44,0.55); margin: 2px 0 0; line-height: 1.4; }
    .boost-row__price { font-size: 0.875rem; font-weight: 700; color: var(--accent); flex-shrink: 0; }

    .boost-total {
      margin-top: 14px; padding: 14px 16px;
      background: #f0fdf4; border-radius: 12px;
      display: flex; justify-content: space-between; align-items: center; gap: 12px;
    }
    .boost-total__label { font-size: 0.8125rem; font-weight: 600; color: var(--ink); }
    .boost-total__value { font-size: 1.25rem; font-weight: 700; color: var(--accent); }
    .boost-total__meta { font-size: 0.75rem; color: rgba(1,56,44,0.55); margin-top: 2px; }

    .autoclose-line {
      margin-top: 10px; padding: 10px 14px;
      background: rgba(59,130,246,0.06); border: 1px solid rgba(59,130,246,0.15); border-radius: 10px;
      font-size: 0.8125rem; color: rgba(1,56,44,0.8); display: flex; align-items: center; gap: 8px;
    }
    .autoclose-line svg { width: 14px; height: 14px; color: #3b82f6; flex-shrink: 0; }

    /* ── Screening question editor ── */
    .screening-list { display: grid; gap: 10px; }
    .screening-question {
      padding: 14px 16px; border: 1px solid var(--line); border-radius: 12px; background: #fff;
      display: grid; gap: 10px;
    }
    .screening-question__row { display: flex; gap: 10px; align-items: flex-start; }
    .screening-question__row .form-select { flex: 0 0 200px; }
    .screening-question__row .form-input { flex: 1; }
    .screening-question__options {
      display: flex; justify-content: space-between; align-items: center;
      padding-top: 4px; border-top: 1px dashed rgba(1,56,44,0.08);
    }
    .screening-question__toggles { display: flex; gap: 14px; align-items: center; font-size: 0.75rem; color: rgba(1,56,44,0.7); }
    .screening-question__toggles label { display: flex; align-items: center; gap: 5px; cursor: pointer; }
    .screening-question__toggles input[type="checkbox"] { accent-color: var(--accent); }
    .screening-question__remove {
      background: none; border: none; color: #dc2626; font-size: 0.75rem; font-weight: 600;
      cursor: pointer; font-family: inherit; padding: 4px 8px; border-radius: 6px;
    }
    .screening-question__remove:hover { background: rgba(220,38,38,0.08); }
    .screening-question__add {
      padding: 12px 16px; border: 1px dashed rgba(5,150,105,0.3); border-radius: 12px;
      background: rgba(236,253,245,0.4); color: var(--accent); font-weight: 600;
      font-size: 0.8125rem; cursor: pointer; text-align: center; font-family: inherit;
    }
    .screening-question__add:hover { background: #ecfdf5; }

    /* Type-aware detail area */
    .screening-question__detail {
      padding: 12px 14px; background: rgba(1,56,44,0.025); border-radius: 10px;
      display: grid; gap: 10px;
    }
    .screening-question__detail-label {
      font-size: 0.7rem; color: rgba(1,56,44,0.55); font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.04em;
    }
    .sq-options { display: grid; gap: 6px; }
    .sq-option-row {
      display: flex; gap: 8px; align-items: center;
    }
    .sq-option-row__handle {
      flex-shrink: 0; width: 14px; height: 14px;
      color: rgba(1,56,44,0.3);
      display: flex; align-items: center; justify-content: center;
    }
    .sq-option-row .form-input { flex: 1; padding: 7px 10px; font-size: 0.8125rem; }
    .sq-option-row__remove {
      flex-shrink: 0;
      width: 26px; height: 26px; border-radius: 6px;
      border: none; background: transparent; color: rgba(1,56,44,0.4);
      cursor: pointer; font-size: 0.875rem; line-height: 1;
      display: flex; align-items: center; justify-content: center;
    }
    .sq-option-row__remove:hover { background: rgba(220,38,38,0.08); color: #dc2626; }
    .sq-option-row__remove[disabled] { opacity: 0.3; cursor: not-allowed; }
    .sq-add-option {
      align-self: start; padding: 6px 12px; border-radius: 999px;
      border: 1px dashed rgba(5,150,105,0.3); background: transparent;
      font-size: 0.75rem; font-weight: 600; color: var(--accent);
      cursor: pointer; font-family: inherit;
    }
    .sq-add-option:hover { background: rgba(236,253,245,0.6); }
    .sq-knockout {
      display: flex; gap: 8px; align-items: center; flex-wrap: wrap;
      font-size: 0.75rem; color: rgba(1,56,44,0.7);
    }
    .sq-knockout label { display: flex; align-items: center; gap: 5px; cursor: pointer; }
    .sq-knockout select, .sq-knockout input[type=text] {
      padding: 6px 10px; border: 1px solid var(--line); border-radius: 8px;
      font-size: 0.75rem; font-family: inherit; background: #fff; color: var(--ink);
      max-width: 220px;
    }
    .sq-min { font-size: 0.7rem; color: rgba(220,38,38,0.7); margin: 0; }

    /* ── Notification subsections ── */
    .notif-subsection { padding: 16px; border: 1px solid var(--line); border-radius: 12px; margin-bottom: 12px; }
    .notif-subsection:last-child { margin-bottom: 0; }
    .notif-subsection__title { margin: 0 0 4px; font-size: 0.875rem; font-weight: 700; color: var(--ink); display: flex; align-items: center; gap: 8px; }
    .notif-subsection__title svg { width: 14px; height: 14px; color: var(--accent); }
    .notif-subsection__desc { margin: 0 0 12px; font-size: 0.75rem; color: rgba(1,56,44,0.55); line-height: 1.4; }

    .recipient-chips { display: flex; flex-wrap: wrap; gap: 6px; }
    .recipient-chip {
      display: inline-flex; align-items: center; gap: 6px;
      padding: 5px 10px 5px 5px; border-radius: 999px;
      background: #fff; border: 1px solid var(--line);
      font-size: 0.75rem; font-weight: 600; color: var(--ink);
    }
    .recipient-chip__avatar {
      width: 20px; height: 20px; border-radius: 50%;
      background: #ecfdf5; color: var(--accent);
      display: inline-flex; align-items: center; justify-content: center;
      font-size: 0.625rem; font-weight: 700;
    }
    .recipient-chip__remove {
      background: none; border: none; font-size: 0.75rem; color: rgba(1,56,44,0.4);
      cursor: pointer; padding: 0 2px; line-height: 1;
    }
    .recipient-chip__remove:hover { color: #dc2626; }
    .recipient-chip.is-add {
      background: rgba(5,150,105,0.05); color: var(--accent);
      border-style: dashed; cursor: pointer;
    }

    .toggle-switch {
      display: inline-flex; align-items: center; gap: 10px;
      cursor: pointer; font-size: 0.8125rem; color: var(--ink); font-weight: 500;
    }
    .toggle-switch input { position: absolute; opacity: 0; pointer-events: none; }
    .toggle-switch__track {
      width: 36px; height: 20px; border-radius: 999px;
      background: rgba(1,56,44,0.15); transition: background 0.15s; position: relative; flex-shrink: 0;
    }
    .toggle-switch__track::after {
      content: ""; position: absolute; top: 2px; left: 2px;
      width: 16px; height: 16px; border-radius: 50%;
      background: #fff; transition: left 0.15s;
      box-shadow: 0 1px 3px rgba(0,0,0,0.15);
    }
    .toggle-switch.is-on .toggle-switch__track { background: var(--accent); }
    .toggle-switch.is-on .toggle-switch__track::after { left: 18px; }

    .toggle-row {
      display: flex; justify-content: space-between; align-items: flex-start; gap: 12px;
      padding: 10px 0; border-bottom: 1px solid rgba(1,56,44,0.06);
    }
    .toggle-row:last-child { border-bottom: none; }
    .toggle-row__text { flex: 1; min-width: 0; }
    .toggle-row__label { font-size: 0.8125rem; font-weight: 600; color: var(--ink); margin: 0; }
    .toggle-row__desc { font-size: 0.75rem; color: rgba(1,56,44,0.55); margin: 2px 0 0; line-height: 1.4; }
    .toggle-row__field { margin-top: 8px; display: flex; gap: 8px; align-items: center; font-size: 0.75rem; }
    .toggle-row__field input[type="number"] { width: 70px; padding: 6px 10px; border: 1px solid var(--line); border-radius: 8px; font-size: 0.8125rem; font-family: inherit; }

    /* ── Review section (Step 3) ── */
    .review-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
    .review-row {
      display: grid; grid-template-columns: 160px 1fr auto; gap: 14px;
      padding: 12px 4px; border-bottom: 1px solid var(--line); align-items: flex-start;
    }
    .review-row__label { font-size: 0.75rem; color: rgba(1,56,44,0.55); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; padding-top: 2px; }
    .review-row__value { font-size: 0.875rem; color: var(--ink); line-height: 1.5; min-width: 0; word-wrap: break-word; }
    .review-row__value .chip { margin-right: 4px; margin-bottom: 4px; }
    .review-row__value-empty { color: rgba(1,56,44,0.45); font-style: italic; font-size: 0.8125rem; }
    .review-row__edit {
      background: none; border: none; color: var(--accent); font-size: 0.75rem; font-weight: 600;
      cursor: pointer; font-family: inherit; padding: 4px 8px; border-radius: 6px; white-space: nowrap;
    }
    .review-row__edit:hover { background: rgba(5,150,105,0.08); }

    /* ── D&I optional card ── */
    .dni-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 14px; }
    .dni-body { display: none; padding-top: 14px; margin-top: 14px; border-top: 1px solid rgba(1,56,44,0.08); }
    .dni-card.is-on .dni-body { display: block; }
    .dni-checklist { display: grid; gap: 8px; }
    .dni-checklist label { display: flex; align-items: flex-start; gap: 10px; font-size: 0.8125rem; color: var(--ink); cursor: pointer; }
    .dni-checklist input[type="checkbox"] { accent-color: var(--accent); margin-top: 2px; flex-shrink: 0; }
    .dni-checklist small { color: rgba(1,56,44,0.55); font-size: 0.75rem; display: block; margin-top: 2px; }

    /* ── Preview Modal ── */
    .preview-overlay {
      position: fixed; inset: 0; z-index: 900;
      background: rgba(1,56,44,0.45); backdrop-filter: blur(4px);
      display: flex; align-items: center; justify-content: center;
      opacity: 0; visibility: hidden; transition: opacity 0.2s, visibility 0.2s;
    }
    .preview-overlay.is-open { opacity: 1; visibility: visible; }
    .preview-modal {
      position: relative; width: 100%; max-width: 720px; max-height: 80vh;
      background: #fff; border-radius: 20px; overflow-y: auto;
      box-shadow: 0 24px 64px rgba(1,56,44,0.18); margin: 16px;
    }
    .preview-modal__close {
      position: absolute; top: 16px; right: 16px; z-index: 2;
      width: 36px; height: 36px; border: none; background: rgba(1,56,44,0.06);
      border-radius: 50%; cursor: pointer; display: flex; align-items: center;
      justify-content: center; font-size: 1.1rem; color: var(--ink);
      transition: background 0.15s;
    }
    .preview-modal__close:hover { background: rgba(1,56,44,0.12); }
    .preview-modal__body { padding: 36px 32px 24px; }
    .preview-header { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
    .preview-logo {
      width: 52px; height: 52px; border-radius: 12px; background: #ecfdf5;
      border: 1px solid rgba(5,150,105,0.15); display: flex; align-items: center;
      justify-content: center; font-size: 1.25rem; font-weight: 700;
      color: var(--accent); flex-shrink: 0;
    }
    .preview-header__info { flex: 1; }
    .preview-header__title { margin: 0 0 4px; font-size: 1.35rem; font-weight: 700; color: var(--ink); }
    .preview-header__company { margin: 0; font-size: 0.875rem; color: rgba(1,56,44,0.6); font-weight: 500; }
    .preview-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
    .preview-badge {
      display: inline-flex; align-items: center; gap: 5px;
      padding: 5px 14px; border-radius: 999px; font-size: 0.8125rem; font-weight: 600;
      background: #f0fdf4; border: 1px solid rgba(5,150,105,0.12); color: var(--ink);
    }
    .preview-badge svg { width: 14px; height: 14px; color: var(--accent); flex-shrink: 0; }
    .preview-section-title {
      margin: 16px 0 10px; font-size: 0.875rem; font-weight: 700; color: var(--ink);
    }
    .preview-description {
      font-size: 0.875rem; line-height: 1.65; color: rgba(1,56,44,0.72);
      margin-bottom: 10px; white-space: pre-line;
    }
    .preview-skills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
    .preview-skill-chip {
      padding: 5px 14px; border-radius: 999px; font-size: 0.8125rem; font-weight: 600;
      background: #ecfdf5; border: 1px solid rgba(5,150,105,0.15); color: var(--accent);
    }
    .preview-apply-btn {
      display: inline-flex; align-items: center; justify-content: center;
      min-height: 48px; padding: 0 32px; border-radius: 999px; margin-top: 14px;
      border: none; background: var(--accent); color: #fff;
      font-size: 0.9375rem; font-weight: 600; cursor: not-allowed;
      opacity: 0.55; font-family: inherit;
    }
    .preview-footer {
      border-top: 1px solid var(--line); padding: 18px 32px;
      display: flex; align-items: center; justify-content: space-between; gap: 12px;
    }
    .preview-footer__note { font-size: 0.8125rem; color: rgba(1,56,44,0.45); font-style: italic; }

    /* ── Success State ── */
    .publish-success {
      display: none; max-width: 560px; margin: 48px auto;
      text-align: center; padding: 48px 32px;
      background: var(--surface, #fff); border: 1px solid var(--line);
      border-radius: 20px;
    }
    .publish-success.is-visible { display: block; }
    .publish-success__icon { width: 80px; height: 80px; margin: 0 auto 24px; }
    .publish-success__title { margin: 0 0 10px; font-size: 1.5rem; font-weight: 700; color: var(--ink); }
    .publish-success__desc { margin: 0 0 28px; font-size: 0.9375rem; line-height: 1.6; color: rgba(1,56,44,0.6); }
    .publish-success__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 32px; }
    .publish-success__stat {
      padding: 18px 16px; border-radius: 14px;
      background: #f0fdf4; border: 1px solid rgba(5,150,105,0.1);
    }
    .publish-success__stat-value { font-size: 0.9375rem; font-weight: 600; color: var(--ink); line-height: 1.45; }
    .publish-success__actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

    /* Draft-restored banner */
    .draft-banner {
      display: none; align-items: center; gap: 10px; padding: 10px 14px;
      background: #fffbeb; border: 1px solid rgba(217,119,6,0.25); border-radius: 12px;
      margin-bottom: 14px; font-size: 0.8125rem; color: rgba(1,56,44,0.75);
    }
    .draft-banner.is-visible { display: flex; }
    .draft-banner svg { width: 14px; height: 14px; color: #b45309; flex-shrink: 0; }
    .draft-banner__actions { margin-left: auto; display: flex; gap: 8px; }
    .draft-banner button {
      background: none; border: none; color: var(--accent); font-size: 0.75rem; font-weight: 600;
      cursor: pointer; font-family: inherit; padding: 4px 8px; border-radius: 6px;
    }
    .draft-banner button:hover { background: rgba(5,150,105,0.08); text-decoration: underline; }

    /* ── Responsive ── */
    @media (max-width: 859px) {
      .salary-row { grid-template-columns: 1fr 1fr; }
      .setup-cards { grid-template-columns: 1fr 1fr; }
      .plan-grid { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .locked-grid { grid-template-columns: 1fr; }
      .wizard-progress { flex-wrap: wrap; }
      .wizard-progress__inner { width: 100%; overflow-x: auto; padding-bottom: 4px; }
      .screening-question__row { flex-direction: column; }
      .screening-question__row .form-select, .screening-question__row .form-input { flex: none; width: 100%; }
    }
    @media (max-width: 639px) {
      .form-card { padding: 22px 18px; }
      .setup-cards { grid-template-columns: 1fr; }
      .form-actions { flex-direction: column-reverse; align-items: stretch; }
      .form-actions__right { justify-content: stretch; }
      .form-actions .btn-ghost, .form-actions .btn-primary { width: 100%; }
      .preview-modal__body { padding: 28px 18px 18px; }
      .preview-footer { padding: 14px 18px; flex-direction: column; text-align: center; }
      .publish-success { margin: 24px 16px; padding: 36px 20px; }
      .publish-success__stats { grid-template-columns: 1fr; }
      .review-row { grid-template-columns: 1fr; gap: 4px; }
      .review-row__label { padding-top: 0; }
      .wizard-nav {
        position: sticky; bottom: 100px; z-index: 5;
        box-shadow: 0 6px 20px rgba(1,56,44,0.08);
      }
      .wizard-step-pill__label { display: none; }
      .wizard-step-pill { padding: 8px; }
      /* leave room for fixed bottom mobile nav */
      .post-job-form { padding-bottom: 110px; }
      .payment-modal__split { grid-template-columns: 1fr; }
    }

    /* ── Narrow phones (≤480px) — keep the wizard-nav buttons usable ── */
    @media (max-width: 480px) {
      .wizard-nav {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 12px 14px;
      }
      .wizard-nav__left, .wizard-nav__right {
        width: 100%;
        justify-content: stretch;
      }
      .wizard-nav__left .btn-ghost,
      .wizard-nav__right .btn-ghost,
      .wizard-nav__right .btn-primary {
        flex: 1 1 0;
        min-width: 0;
        padding: 0 14px;
      }
      .form-actions__right .btn-ghost,
      .form-actions__right .btn-primary { flex: 1 1 0; min-width: 0; padding: 0 14px; }
      /* Push form padding higher because wizard-nav now stacks taller */
      .post-job-form { padding-bottom: 140px; }
      .wizard-nav { bottom: 100px; }
      /* Wizard progress: hide step pills' visual separators to save room */
      .wizard-step-separator { width: 8px; }
      /* Stricter action layout in form-actions (Step 3 publish bar) */
      .form-actions__right { flex-direction: column; }
    }

    /* ── Structured details reveal ── */
    .structured-details { border: 1px dashed rgba(1,56,44,0.18); border-radius: 12px; background: rgba(1,56,44,0.015); }
    .structured-details[open] { background: #fff; border-style: solid; border-color: var(--line); }
    .structured-details__summary { list-style: none; cursor: pointer; padding: 14px 16px; display: flex; align-items: flex-start; gap: 12px; }
    .structured-details__summary::-webkit-details-marker { display: none; }
    .structured-details__icon {
      flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
      background: rgba(5,150,105,0.12); color: var(--accent);
      display: inline-flex; align-items: center; justify-content: center;
      font-size: 0.875rem; font-weight: 700; line-height: 1; margin-top: 1px;
      transition: transform 0.2s, background 0.15s;
    }
    .structured-details[open] .structured-details__icon { transform: rotate(45deg); background: rgba(5,150,105,0.18); }
    .structured-details__copy { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
    .structured-details__title { font-size: 0.875rem; font-weight: 600; color: var(--ink); }
    .structured-details__hint { font-size: 0.75rem; color: rgba(1,56,44,0.55); line-height: 1.45; }
    .structured-details__body { padding: 0 16px 16px; display: grid; gap: 0; border-top: 1px solid var(--line); margin-top: 6px; padding-top: 16px; }
    .form-textarea--short { min-height: 96px; }

    /* ── Hiring Contact ── */
    .hiring-contact-preview {
      display: flex; align-items: flex-start; gap: 14px;
      padding: 14px 16px; border: 1px solid var(--line); border-radius: 12px;
      background: #fafbfc; margin-bottom: 14px; transition: background 0.15s;
    }
    .hiring-contact-preview[data-mode="team"] { background: #f5f7ff; border-color: rgba(99,102,241,0.18); }
    .hiring-contact-preview__avatar {
      flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
      background: linear-gradient(135deg, #059669, #064e3b);
      display: inline-flex; align-items: center; justify-content: center;
      color: #fff; font-weight: 700; font-size: 0.875rem;
    }
    .hiring-contact-preview[data-mode="team"] .hiring-contact-preview__avatar {
      background: linear-gradient(135deg, #6366F1, #4338CA);
    }
    .hiring-contact-preview__body { min-width: 0; flex: 1; }
    .hiring-contact-preview__name { font-size: 0.9375rem; font-weight: 600; color: var(--ink); }
    .hiring-contact-preview__role { font-size: 0.75rem; color: rgba(1,56,44,0.55); margin-top: 2px; }
    .hiring-contact-preview__hint { font-size: 0.75rem; color: rgba(1,56,44,0.5); margin-top: 8px; line-height: 1.5; }

    .hiring-contact-toggle {
      display: flex; gap: 12px; align-items: flex-start;
      padding: 14px 16px; border: 1px solid var(--line); border-radius: 12px;
      cursor: pointer; transition: border-color 0.15s, background 0.15s;
    }
    .hiring-contact-toggle:hover { border-color: rgba(5,150,105,0.25); background: rgba(5,150,105,0.03); }
    .hiring-contact-toggle input { position: absolute; opacity: 0; pointer-events: none; }
    .hiring-contact-toggle__switch {
      flex-shrink: 0; width: 36px; height: 20px; border-radius: 999px;
      background: #d1d5db; position: relative; transition: background 0.15s;
      margin-top: 1px;
    }
    .hiring-contact-toggle__switch::after {
      content: ''; position: absolute; top: 2px; left: 2px;
      width: 16px; height: 16px; border-radius: 50%; background: #fff;
      transition: transform 0.15s;
      box-shadow: 0 1px 2px rgba(0,0,0,0.18);
    }
    .hiring-contact-toggle input:checked ~ .hiring-contact-toggle__switch { background: var(--accent); }
    .hiring-contact-toggle input:checked ~ .hiring-contact-toggle__switch::after { transform: translateX(16px); }
    .hiring-contact-toggle__copy { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
    .hiring-contact-toggle__title { font-size: 0.875rem; font-weight: 600; color: var(--ink); }
    .hiring-contact-toggle__desc { font-size: 0.75rem; color: rgba(1,56,44,0.55); line-height: 1.45; }
