.a1j-funnel,
.a1j-funnel * {
  box-sizing: border-box;
}

.a1j-funnel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  /* Clip decorations without creating an internal scroll container on mobile. */
  overflow: clip;
  width: 100%;
  border-style: solid;
  border-color: var(--a1j-panel-border);
  background: var(--a1j-panel-bg);
  color: var(--a1j-text);
  border-radius: var(--a1j-panel-radius, 20px) !important;
}

.a1j-funnel::before,
.a1j-funnel::after {
  position: absolute;
  z-index: -1;
  width: 230px;
  height: 230px;
  border-radius: 999px;
  content: "";
  pointer-events: none;
}

.a1j-funnel::before {
  top: -155px;
  right: -70px;
  background: color-mix(in srgb, var(--a1j-primary) 11%, transparent);
}

.a1j-funnel::after {
  bottom: -155px;
  left: -75px;
  background: color-mix(in srgb, var(--a1j-secondary) 10%, transparent);
}

.a1j-funnel__head {
  max-width: 790px;
  margin-right: auto;
  margin-left: auto;
}

.a1j-funnel__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  padding: 6px 12px;
  border: 1px solid color-mix(in srgb, var(--a1j-primary) 24%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--a1j-panel-bg) 85%, white);
  color: var(--a1j-primary);
  font-size: 12px;
  font-weight: 800;
}

.a1j-funnel__eyebrow::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--a1j-primary);
  content: "";
}

.a1j-funnel h2,
.a1j-funnel h3,
.a1j-funnel p {
  margin-top: 0;
}

.a1j-funnel h2 {
  margin-bottom: 0;
  color: var(--a1j-text);
  line-height: 1.12;
  letter-spacing: -.025em;
  text-underline-offset: 5px;
}

.a1j-funnel__intro {
  max-width: 680px;
  margin: 11px auto 0;
  color: var(--a1j-muted);
  line-height: 1.55;
}

.a1j-funnel__head[style*="left"] .a1j-funnel__intro,
.a1j-funnel__head[style*="right"] .a1j-funnel__intro {
  margin-right: 0;
  margin-left: 0;
}

.a1j-funnel__progress {
  max-width: 650px;
  margin-right: auto;
  margin-left: auto;
}

.a1j-funnel__progress-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 7px;
  color: var(--a1j-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.a1j-funnel__track {
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: color-mix(in srgb, var(--a1j-muted) 15%, transparent);
}

.a1j-funnel__bar {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--a1j-primary), var(--a1j-secondary));
  transition: width var(--a1j-transition) ease;
}

.a1j-funnel__step {
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
}

.a1j-funnel__step[hidden] {
  display: none;
}

.a1j-funnel__step.is-entering {
  animation: a1j-enter .32s ease both;
}

.a1j-funnel__step-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.a1j-funnel__number {
  display: grid;
  flex: 0 0 35px;
  width: 35px;
  height: 35px;
  place-items: center;
  border-radius: 11px;
  background: var(--a1j-text);
  color: var(--a1j-panel-bg);
  font-size: 14px;
  font-weight: 900;
}

.a1j-funnel__step-title {
  margin: 0;
  color: var(--a1j-text);
  line-height: 1.18;
}

.a1j-funnel__step-text {
  margin: 3px 0 0;
  color: var(--a1j-muted);
  font-size: .875em;
}

.a1j-funnel__choices {
  display: grid;
  gap: var(--a1j-card-gap);
}

.a1j-funnel__choices--contracts {
  grid-template-columns: repeat(var(--a1j-contract-cols), minmax(0, 1fr));
}

.a1j-funnel__choices--sectors {
  grid-template-columns: repeat(var(--a1j-sector-cols), minmax(0, 1fr));
}

.a1j-choice {
  position: relative;
  display: flex;
  width: 100%;
  min-width: 0;
  align-items: center;
  gap: 9px;
  border-style: solid;
  border-color: var(--a1j-card-border);
  background: var(--a1j-card-bg);
  box-shadow: 0 5px 13px rgba(35, 20, 42, .045);
  color: var(--a1j-card-text);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform var(--a1j-transition) ease, border-color var(--a1j-transition) ease, background var(--a1j-transition) ease, color var(--a1j-transition) ease, box-shadow var(--a1j-transition) ease;
}

.a1j-funnel .a1j-choice {
  border-radius: var(--a1j-card-radius, 12px) !important;
}

.a1j-funnel .a1j-choice[hidden] {
  display: none !important;
}

.a1j-choice:hover {
  border-color: var(--a1j-hover-border);
  background: var(--a1j-hover-bg);
  box-shadow: 0 10px 22px rgba(35, 20, 42, .10);
  color: var(--a1j-hover-text);
}

.a1j-choice:focus-visible,
.a1j-funnel button:focus-visible,
.a1j-funnel a:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--a1j-focus) 30%, transparent);
  outline-offset: 3px;
}

.a1j-choice.is-selected,
.a1j-choice[aria-pressed="true"] {
  border-color: var(--a1j-selected-border);
  background: var(--a1j-selected-bg);
  box-shadow: 0 9px 21px color-mix(in srgb, var(--a1j-selected-bg) 22%, transparent);
  color: var(--a1j-selected-text);
}

.a1j-choice__icon {
  display: grid;
  overflow: hidden;
  flex-shrink: 0;
  place-items: center;
  background: color-mix(in srgb, var(--a1j-card-icon) 11%, transparent);
  color: var(--a1j-card-icon);
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
}

.a1j-funnel .a1j-choice__icon {
  border-radius: var(--a1j-icon-radius, 10px) !important;
}

.a1j-choice:hover .a1j-choice__icon {
  background: color-mix(in srgb, var(--a1j-hover-icon) 13%, transparent);
  color: var(--a1j-hover-icon);
}

.a1j-choice.is-selected .a1j-choice__icon,
.a1j-choice[aria-pressed="true"] .a1j-choice__icon {
  background: rgba(255, 255, 255, .17);
  color: var(--a1j-selected-icon);
}

.a1j-choice__icon img {
  width: 75%;
  height: 75%;
  object-fit: contain;
}

.a1j-choice__copy {
  display: block;
  min-width: 0;
  flex: 1 1 auto;
}

.a1j-choice--contract {
  justify-content: center;
  text-align: center;
}

.a1j-choice--contract .a1j-choice__copy {
  flex: 0 1 auto;
}

.a1j-choice__label {
  display: -webkit-box;
  overflow: hidden;
  max-width: 100%;
  line-height: 1.25;
  overflow-wrap: anywhere;
  white-space: normal;
  -webkit-box-orient: vertical;
  text-underline-offset: 3px;
}

.a1j-choice__availability {
  display: inline-grid;
  flex: 0 0 auto;
  min-width: 25px;
  height: 25px;
  place-items: center;
  padding: 0 7px;
  border-radius: 999px;
  background: color-mix(in srgb, currentColor 14%, transparent);
  color: currentColor;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.a1j-choice__hint {
  display: block;
  overflow: hidden;
  margin-top: 3px;
  color: var(--a1j-muted);
  font-size: 11px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.a1j-choice:hover .a1j-choice__hint,
.a1j-choice.is-selected .a1j-choice__hint,
.a1j-choice[aria-pressed="true"] .a1j-choice__hint {
  color: currentColor;
  opacity: .78;
}

/* Couleurs propres aux secteurs */
.a1j-sector-mode-soft .a1j-choice--sector {
  border-color: var(--a1j-sector);
  background: var(--a1j-sector-soft);
  color: var(--a1j-text);
}

.a1j-sector-mode-outline .a1j-choice--sector {
  border-color: var(--a1j-sector);
  background: var(--a1j-card-bg);
  color: var(--a1j-card-text);
}

.a1j-sector-mode-solid .a1j-choice--sector {
  border-color: var(--a1j-sector);
  background: var(--a1j-sector);
  color: var(--a1j-sector-contrast);
}

.a1j-choice--sector:hover {
  border-color: var(--a1j-sector-hover);
  background: var(--a1j-sector-hover);
  color: var(--a1j-sector-contrast);
}

.a1j-funnel .a1j-choice--sector.is-selected,
.a1j-funnel .a1j-choice--sector[aria-pressed="true"],
.a1j-funnel .a1j-choice--sector[data-a1j-selected="1"],
.a1j-funnel .a1j-choice--sector.is-selected:hover,
.a1j-funnel .a1j-choice--sector[aria-pressed="true"]:hover,
.a1j-funnel .a1j-choice--sector[data-a1j-selected="1"]:hover {
  border-color: var(--a1j-selected-border) !important;
  background: var(--a1j-selected-bg) !important;
  box-shadow: 0 8px 19px color-mix(in srgb, var(--a1j-selected-bg) 28%, transparent);
  color: var(--a1j-selected-text) !important;
}

.a1j-icon-color-sector .a1j-sector-icon {
  color: var(--a1j-sector);
}

.a1j-icon-color-custom .a1j-sector-icon {
  color: var(--a1j-sector-icon-custom);
}

.a1j-icon-color-contrast .a1j-sector-icon {
  color: var(--a1j-sector-contrast);
}

.a1j-icon-color-sector .a1j-choice--sector:hover .a1j-sector-icon,
.a1j-icon-color-sector .a1j-choice--sector.is-selected .a1j-sector-icon,
.a1j-icon-color-sector .a1j-choice--sector[aria-pressed="true"] .a1j-sector-icon,
.a1j-icon-color-contrast .a1j-choice--sector:hover .a1j-sector-icon,
.a1j-icon-color-contrast .a1j-choice--sector.is-selected .a1j-sector-icon,
.a1j-icon-color-contrast .a1j-choice--sector[aria-pressed="true"] .a1j-sector-icon {
  color: var(--a1j-sector-contrast);
}

.a1j-icon-color-custom .a1j-choice--sector.is-selected .a1j-sector-icon,
.a1j-icon-color-custom .a1j-choice--sector[aria-pressed="true"] .a1j-sector-icon,
.a1j-icon-color-custom .a1j-choice--sector:hover .a1j-sector-icon {
  color: var(--a1j-sector-icon-selected-custom);
}

.a1j-funnel .a1j-choice--sector.is-selected .a1j-sector-icon,
.a1j-funnel .a1j-choice--sector[aria-pressed="true"] .a1j-sector-icon,
.a1j-funnel .a1j-choice--sector[data-a1j-selected="1"] .a1j-sector-icon,
.a1j-funnel .a1j-choice--sector.is-selected:hover .a1j-sector-icon,
.a1j-funnel .a1j-choice--sector[aria-pressed="true"]:hover .a1j-sector-icon,
.a1j-funnel .a1j-choice--sector[data-a1j-selected="1"]:hover .a1j-sector-icon {
  color: var(--a1j-selected-icon) !important;
}

.a1j-icon-bg-none .a1j-sector-icon {
  background: transparent;
}

.a1j-icon-bg-soft .a1j-sector-icon {
  background: var(--a1j-sector-soft);
}

.a1j-icon-bg-solid .a1j-sector-icon {
  background: var(--a1j-sector);
  color: var(--a1j-sector-contrast);
}

.a1j-choice--sector:hover .a1j-sector-icon,
.a1j-choice--sector.is-selected .a1j-sector-icon,
.a1j-choice--sector[aria-pressed="true"] .a1j-sector-icon {
  background: rgba(255, 255, 255, .2);
}

.a1j-funnel__selection-count {
  margin: 11px 0 0;
  color: var(--a1j-muted);
  font-size: 12px;
  font-weight: 700;
  text-align: right;
}

.a1j-funnel__limit-message {
  margin: 10px 0 0;
  padding: 8px 11px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--a1j-primary) 10%, white);
  color: var(--a1j-primary);
  font-size: 12px;
  font-weight: 700;
}

.a1j-funnel__availability-message {
  margin: 12px 0 0;
  padding: 10px 12px;
  border-radius: 9px;
  background: color-mix(in srgb, var(--a1j-muted) 9%, white);
  color: var(--a1j-muted);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.a1j-funnel__availability-message[hidden],
.a1j-funnel__result[hidden] {
  display: none;
}

.a1j-funnel__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  padding-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--a1j-muted) 16%, transparent);
}

.a1j-funnel .a1j-funnel__actions > button {
  display: inline-flex;
  flex: 1 1 0;
  min-height: 60px;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border-radius: 12px;
  line-height: 1.35;
  text-align: center;
  white-space: normal;
}

.a1j-funnel .a1j-funnel__actions > .a1j-funnel__back {
  border: 2px solid var(--a1j-button-bg);
  background: var(--a1j-card-bg);
  color: var(--a1j-button-bg);
}

.a1j-funnel .a1j-funnel__actions > .a1j-funnel__back:hover {
  border-color: var(--a1j-button-hover-bg);
  color: var(--a1j-button-hover-bg);
}

.a1j-funnel [data-a1j-panel="sectors"] {
  scroll-margin-top: 100px;
}

@media (max-width: 600px) {
  .a1j-funnel .a1j-funnel__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .a1j-funnel .a1j-funnel__actions > button {
    flex-basis: auto;
    width: 100%;
  }
}

.a1j-funnel__back,
.a1j-funnel__reset {
  border: 0;
  background: transparent;
  color: var(--a1j-muted);
  font-family: inherit;
  cursor: pointer;
  text-underline-offset: 4px;
}

.a1j-funnel__submit {
  display: inline-flex;
  min-height: 47px;
  align-items: center;
  justify-content: center;
  padding: 11px 21px;
  border: 0;
  border-radius: 12px;
  background: var(--a1j-button-bg);
  box-shadow: 0 9px 20px color-mix(in srgb, var(--a1j-button-bg) 24%, transparent);
  color: var(--a1j-button-text);
  font-family: inherit;
  cursor: pointer;
  transition: transform var(--a1j-transition) ease, background var(--a1j-transition) ease, color var(--a1j-transition) ease;
}

.a1j-funnel__submit:hover:not(:disabled) {
  transform: translateY(-2px);
  background: var(--a1j-button-hover-bg);
  color: var(--a1j-button-hover-text);
}

.a1j-funnel__submit:disabled {
  box-shadow: none;
  cursor: not-allowed;
  opacity: .42;
}

.a1j-funnel__result {
  display: flex;
  max-width: 1100px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 15px auto 0;
  padding: 11px 15px;
  border: 1px solid rgba(64, 175, 54, .22);
  border-radius: 12px;
  background: rgba(64, 175, 54, .08);
  color: #24641f;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.a1j-funnel__empty {
  padding: 18px;
  border-radius: 12px;
  background: #fff0f4;
  color: #8b203f;
  text-align: center;
}

.a1j-results-anchor {
  scroll-margin-top: 120px;
}

@keyframes a1j-enter {
  from { opacity: 0; transform: translateY(9px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 600px) {
  .a1j-funnel__actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .a1j-funnel__submit {
    width: 100%;
  }

  .a1j-funnel__back,
  .a1j-funnel__reset {
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .a1j-funnel *,
  .a1j-funnel *::before,
  .a1j-funnel *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }
}


/* Version 2.7.0 — recherche métier guidée, sans impasse */
.a1j-job-picker { position: relative; max-width: 820px; margin: 0 auto; }
.a1j-job-picker__field { position: relative; display: flex; min-height: 62px; align-items: center; gap: 10px; padding: 8px 10px 8px 14px; border: 2px solid color-mix(in srgb, var(--a1j-card-border) 85%, var(--a1j-primary)); border-radius: 14px; background: var(--a1j-card-bg); box-shadow: 0 6px 18px rgba(35,20,42,.06); transition: border-color var(--a1j-transition) ease, box-shadow var(--a1j-transition) ease; }
.a1j-job-picker__field:focus-within { border-color: var(--a1j-primary); box-shadow: 0 0 0 4px color-mix(in srgb, var(--a1j-primary) 13%, transparent), 0 8px 22px rgba(35,20,42,.08); }
.a1j-job-picker__icon { display: grid; width: 38px; height: 38px; flex: 0 0 38px; place-items: center; border-radius: 10px; background: color-mix(in srgb, var(--a1j-primary) 10%, white); color: var(--a1j-primary); }
.a1j-job-picker__icon svg { width: 22px; height: 22px; }
.a1j-job-search { width: 100%; min-width: 0; padding: 10px 8px; border: 0 !important; outline: 0 !important; background: transparent !important; box-shadow: none !important; color: var(--a1j-text); font: inherit; font-size: 16px; font-weight: 700; }
.a1j-job-search::placeholder { color: color-mix(in srgb, var(--a1j-muted) 74%, transparent); font-weight: 500; }
.a1j-job-clear { display: grid; width: 34px; height: 34px; flex: 0 0 34px; place-items: center; border: 0; border-radius: 50%; background: color-mix(in srgb, var(--a1j-muted) 10%, transparent); color: var(--a1j-muted); font-size: 23px; line-height: 1; cursor: pointer; }
.a1j-job-clear[hidden] { display: none !important; }
.a1j-job-suggestions { position: absolute; z-index: 30; top: calc(100% + 7px); right: 0; left: 0; overflow: hidden; max-height: 330px; overflow-y: auto; border: 1px solid color-mix(in srgb, var(--a1j-card-border) 80%, var(--a1j-primary)); border-radius: 13px; background: #fff; box-shadow: 0 18px 40px rgba(25,20,35,.16); }
.a1j-job-suggestions[hidden] { display: none !important; }
.a1j-job-suggestion { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 14px; border: 0; border-bottom: 1px solid #edf0f4; background: #fff; color: #172033; font: inherit; text-align: left; cursor: pointer; }
.a1j-job-suggestion:last-child { border-bottom: 0; }
.a1j-job-suggestion:hover, .a1j-job-suggestion.is-active { background: color-mix(in srgb, var(--a1j-primary) 8%, white); }
.a1j-job-suggestion__title { font-size: 14px; font-weight: 750; line-height: 1.3; }
.a1j-job-suggestion__count { display: inline-grid; min-width: 27px; height: 27px; place-items: center; padding: 0 7px; border-radius: 999px; background: color-mix(in srgb, var(--a1j-primary) 12%, white); color: var(--a1j-primary); font-size: 11px; font-weight: 900; }
.a1j-job-suggestions__empty { padding: 14px; color: var(--a1j-muted); font-size: 13px; font-weight: 650; line-height: 1.45; }
.a1j-job-status { margin: 9px 2px 0; color: var(--a1j-muted); font-size: 12px; line-height: 1.4; }
.a1j-job-status[data-status="success"] { color: #24641f; font-weight: 750; }
.a1j-preview-job { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin: 9px 0 14px; padding: 12px 14px; border: 1px solid #ded5e2; border-radius: 12px; background: #fff; color: #5e6375; font-size: 12px; }
.a1j-preview-job b { color: #e5007d; }
@media(max-width:600px) { .a1j-job-picker__field { min-height: 58px; padding-left: 10px; } .a1j-job-picker__icon { width: 34px; height: 34px; flex-basis: 34px; } .a1j-job-search { font-size: 15px; } .a1j-job-suggestion { align-items: flex-start; } .a1j-preview-job { align-items: flex-start; flex-direction: column; } }
