:root {
      --blue: #07558d;
      --blue-strong: #064776;
      --blue-action: #1673b8;
      --orange: #ef7421;
      --pale: #f1f7fb;
      --line: #d8e6ef;
      --ink: #18354c;
      --muted: #60788a;
      --white: #fff;
      --shadow: 0 24px 70px rgba(7, 85, 141, .12);
      font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--ink);
      background: var(--white);
    }

    * { box-sizing: border-box; }
    body { margin: 0; min-height: 100vh; background: var(--white); }
    button, a { font: inherit; }
    a { color: inherit; }

    .topbar {
      min-height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 10px max(22px, calc((100vw - 1180px) / 2));
      border-bottom: 1px solid #e7eff4;
      box-shadow: 0 4px 20px rgba(7, 85, 141, .04);
    }

    .brand {
      display: inline-flex;
      align-items: center;
      text-decoration: none;
    }
    .brand img { width: 78px; height: auto; display: block; }
    .topbar-title {
      margin: 0;
      color: var(--blue);
      font-size: clamp(1.55rem, 3vw, 2.35rem);
      line-height: 1.12;
      letter-spacing: -.025em;
      text-align: right;
    }

    .journey-progress {
      width: min(1180px, calc(100% - 40px));
      margin: 18px auto 0;
    }
    .progress-copy {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 7px;
      color: var(--muted);
      font-size: .82rem;
    }
    .progress-copy strong { color: var(--blue); }
    .progress-track { height: 5px; overflow: hidden; border-radius: 99px; background: #e4eef5; }
    .progress-track span { display: block; width: 25%; height: 100%; border-radius: inherit; background: var(--blue-action); }

    .journey-shell {
      width: min(1180px, calc(100% - 40px));
      min-height: 500px;
      margin: 24px auto;
      display: grid;
      grid-template-columns: minmax(300px, 36%) minmax(0, 64%);
      overflow: hidden;
      border: 1px solid #e0ebf2;
      border-radius: 32px;
      box-shadow: var(--shadow);
      background: var(--white);
    }

    .alice-panel {
      min-height: 500px;
      padding: 34px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 26px;
      background: var(--pale);
      border-right: 1px solid #dceaf3;
    }

    .alice-photo {
      width: 190px;
      height: 190px;
      align-self: center;
      overflow: visible;
      background: var(--white);
      border: 8px solid var(--white);
      border-radius: 50%;
      box-shadow: 0 16px 38px rgba(7, 85, 141, .16);
    }
    .alice-photo img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      object-position: 50% 42%;
      border-radius: 50%;
    }
    .alice-photo::after {
      content: "Alice vous accompagne";
      display: block;
      margin-top: 9px;
      color: var(--muted);
      font-size: .78rem;
      font-weight: 700;
      text-align: center;
      white-space: nowrap;
    }

    .selection-panel {
      min-width: 0;
      padding: 34px 42px 28px;
      display: flex;
      flex-direction: column;
    }

    .panel-head { margin-bottom: 24px; }
    .back {
      width: 44px;
      height: 44px;
      flex: 0 0 auto;
      display: grid;
      place-items: center;
      border: 0;
      border-radius: 50%;
      background: var(--pale);
      color: var(--blue);
      font-size: 1.5rem;
      text-decoration: none;
    }
    .back:hover, .back:focus-visible { outline: 3px solid rgba(22, 115, 184, .18); }
    h1 {
      margin: 0 0 11px;
      color: var(--blue);
      font-size: clamp(2rem, 4vw, 2.7rem);
      line-height: 1.12;
      letter-spacing: -.025em;
    }
    .choices { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
    .choice {
      min-height: 112px;
      padding: 21px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      text-decoration: none;
      border: 1.5px solid var(--line);
      border-radius: 20px;
      background: var(--white);
      box-shadow: 0 4px 14px rgba(7, 85, 141, .035);
      transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease, background .16s ease;
    }
    .choice:hover, .choice:focus-visible, .choice[aria-current="true"] {
      border-color: var(--blue-action);
      background: var(--pale);
      box-shadow: 0 10px 24px rgba(7, 85, 141, .10);
      transform: translateY(-1px);
      outline: 0;
    }
    .choice strong { color: var(--blue); font-size: 1.1rem; line-height: 1.3; }
    .choice span { margin-top: 7px; color: var(--muted); font-size: .93rem; line-height: 1.4; }

    .selection-status {
      display: none;
      min-height: 25px;
      margin: 22px 0 0;
      color: var(--blue-strong);
      font-weight: 750;
      line-height: 1.45;
    }
    .privacy { margin: auto 0 0; padding-top: 24px; color: var(--muted); font-size: .8rem; text-align: center; }

    @media (min-width: 821px) {
      .alice-photo { transform: translateY(-37px); }
      .choices { margin-top: 25px; }
    }

    @media (max-width: 820px) {
      .topbar { min-height: 60px; padding: 7px 15px; }
      .brand img { width: 78px; }
      .journey-progress { width: calc(100% - 36px); margin-top: 8px; }
      .journey-shell {
        width: min(100% - 18px, 680px);
        min-height: auto;
        margin: 6px auto 18px;
        grid-template-columns: 1fr;
        border-radius: 22px;
      }
      .alice-panel {
        min-height: 112px;
        padding: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-right: 0;
        border-bottom: 1px solid #dceaf3;
      }
      .alice-photo {
        width: 78px;
        height: 78px;
        margin: 0;
        border-width: 5px;
      }
      .selection-panel { padding: 14px 17px 18px; }
      .choices { grid-template-columns: 1fr; gap: 11px; }
      .choice { min-height: 78px; padding: 14px; }
      .privacy { margin-top: 8px; }
    }

    @media (max-width: 430px) {
      .brand img { width: 72px; }
      .topbar { gap: 12px; }
      .topbar-title { max-width: none; font-size: 1.12rem; white-space: nowrap; }
      .journey-progress { width: calc(100% - 30px); margin-top: 10px; }
      .journey-shell { width: 100%; margin: 0; border: 0; border-radius: 0; box-shadow: none; }
      .alice-panel { min-height: 100px; }
      .alice-photo { width: 72px; height: 72px; }
      .alice-photo::after { margin-top: 5px; font-size: .65rem; }
      .selection-panel { padding: 12px 15px 16px; }
      .panel-head { margin-bottom: 8px; }
    }

    .back-link { align-self: flex-start; margin-top: 16px; color: var(--muted); font-size: .82rem; font-weight: 650; text-decoration: none; }
    .back-link:hover, .back-link:focus-visible { color: var(--blue); text-decoration: underline; }
    .topbar { min-height: 132px; flex-direction: column; justify-content: center; gap: 5px; padding-top: 10px; padding-bottom: 10px; }
    .brand { gap: 10px; }
    .brand-symbol { width: 78px; height: 70px; display: inline-flex; align-items: center; }
    .brand-symbol img { width: 78px; height: auto; display: block; }
    .brand-wordmark { color: var(--blue); font-size: 1.7rem; font-weight: 850; letter-spacing: .015em; }
    .topbar-title { font-size: 1.45rem; text-align: center; white-space: nowrap; }
    @media (max-width: 430px) {
      .topbar { min-height: 100px; gap: 3px; padding-top: 7px; padding-bottom: 7px; }
      .brand { gap: 7px; }
      .brand-symbol { width: 58px; height: 53px; }
      .brand-symbol img { width: 58px; }
      .brand-wordmark { font-size: 1.2rem; }
      .topbar-title { font-size: 1.08rem; }
    }

    .choice { position: relative; padding-right: 54px; background: #f9fcfe; border-color: #c5ddea; box-shadow: 0 6px 18px rgba(7, 85, 141, .07); }
    .choice::after { content: "›"; position: absolute; right: 18px; top: 50%; width: 28px; height: 28px; display: grid; place-items: center; transform: translateY(-50%); border-radius: 50%; background: #e8f3fa; color: var(--blue); font-size: 1.45rem; font-weight: 800; }
    .choice:hover::after, .choice:focus-visible::after, .choice[aria-current="true"]::after { background: var(--blue); color: var(--white); }
    @media (min-width: 821px) {
      .choice { padding-right: 44px; }
      .choice strong { font-size: .98rem; }
      .choice::after { right: 11px; width: 32px; height: 32px; border: 1px solid #b5d6e8; background: #dceefa; }
    }

    @media (prefers-reduced-motion: reduce) {
      .choice { transition: none; }
    }
.back-link { min-height: 38px; padding: 0 14px; display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; background: #fff; color: var(--blue); font-size: .82rem; font-weight: 700; text-decoration: none; box-shadow: 0 3px 10px rgba(15,61,91,.07); }
.back-link:hover, .back-link:focus-visible { background: var(--pale); color: var(--blue); text-decoration: none; }

/* Refonte orientation V1 */
.journey-progress,
.alice-panel,
.privacy,
.back-link { display:none !important; }

.journey-shell.orientation-shell {
  width:min(760px,calc(100% - 32px));
  min-height:0;
  margin:28px auto;
  display:block;
  border:0;
  box-shadow:none;
}

.selection-panel { padding:0; }

.orientation-head {
  margin-bottom:22px;
  text-align:center;
}

.choices {
  grid-template-columns:1fr;
  gap:12px;
}

.choice {
  min-height:82px;
  border-radius:18px;
}

.alice-mini {
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-bottom:12px;
  color:var(--blue);
  font-size:.84rem;
  font-weight:750;
}

.alice-mini img {
  width:44px;
  height:44px;
  object-fit:cover;
  object-position:50% 42%;
  border-radius:50%;
  box-shadow:0 6px 16px rgba(7,85,141,.14);
}

.orientation-head h2 {
  margin:0 0 8px;
  color:var(--blue);
  font-size:2rem;
  line-height:1.1;
}

.orientation-head p {
  margin:0;
  color:var(--muted);
  font-size:.96rem;
}

/* Cartes orientation V1 */
.choice {
  min-height:82px;
  padding:16px 58px 16px 18px;
  background:#fbfdff;
  border:1.5px solid #c9ddea;
  border-radius:18px;
}

.choice.is-selected,
.choice[aria-current="true"] {
  border-color:var(--blue-action);
  background:#eef7fc;
  box-shadow:0 0 0 2px rgba(22,115,184,.08);
}

.choice.is-selected::after,
.choice[aria-current="true"]::after {
  content:"✓";
  background:var(--blue);
  color:#fff;
  font-size:1rem;
}

.orientation-head p {
  margin-top:10px;
  color:var(--blue-strong);
  font-size:1.02rem;
  font-weight:700;
}

.back-link {
  display:inline-flex !important;
  align-self:flex-start;
  margin-top:16px;
  color:var(--muted);
  font-size:.82rem;
  font-weight:700;
  text-decoration:none;
}
