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

    :root {
      --green-deep: rgb(36, 34, 32);
      --green-mid:  #2D5016;
      --green-acc:  rgb(46, 147, 111);
      --green-light:rgb(132, 195, 144);
      --slate:      #1C2B1A;
      --muted:      rgb(36, 34, 32);
      --border:     #D4DDD0;
      --bg:         #F8F9F6;
      --white:      #FFFFFF;
      --black:      #000000;
      --red:        #C0392B;
      --red-bg:     #FDF2F0;
      --red-border: #E8C5C0;
      --amber:      #D4820A;
      --amber-bg:   #FEF8EE;
      --amber-border:#E8D5A0;
    }

    html { scroll-behavior: smooth; }
    body {
      font-family: 'Inter', sans-serif;
      color: var(--slate);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 48px; height: 64px;
      background: transparent;
      transition: background 0.3s, border-bottom 0.3s;
    }
    #quiz-nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 48px; height: 64px;
      background: linear-gradient(166deg, #1b6549 0%, #112111 100%);
      transition: background 0.3s, border-bottom 0.3s;
    }
    nav.scrolled {
      background: white;
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .nav-logo {
      font-family: 'Red Hat Display', sans-serif;
      font-size: 0.95rem; font-weight: 900;
      color: var(--white);
      letter-spacing: 0.18em;
      text-decoration: none;
      text-transform: uppercase;
    }
    #quiz-nav .nav-logo {
      color: var(--white);
    }
    nav.scrolled .nav-logo {
      color: black;
    }
    .nav-links {
      display: flex; gap: 32px; align-items: center; list-style: none;
    }
    .nav-links a {
      font-size: 0.85rem; font-weight: 500;
      color: rgba(255,255,255,0.75); text-decoration: none;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: white; }
    .nav-cta {
      background: var(--white) !important;
      color: var(--green-deep) !important;
      padding: 8px 20px; border-radius: 6px;
      font-weight: 600 !important;
      transition: opacity 0.2s !important;
    }
    .nav-cta:hover { opacity: 0.9; }
    .nav-back {
      display: flex; align-items: center; gap: 7px;
      font-size: 0.82rem; font-weight: 500;
      color: rgba(255,255,255,0.6);
      text-decoration: none; transition: color 0.2s;
    }

    /* ── HERO — fond dégradé vert ── */
    .hero {
      background: linear-gradient(166deg, #1b6549 0%, #112111 100%);
      min-height: 50vh;
      display: flex; flex-direction: column;
      justify-content: center;
      padding: 100px 48px 80px;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse at 70% 50%, rgba(122,182,72,0.15) 0%, transparent 65%);
      pointer-events: none;
    }
    .hero::after {
      content: '';
      position: absolute; bottom: 0; left: 0; right: 0;
      height: 120px;
      background: linear-gradient(to bottom, transparent, rgba(248,249,246,0.08));
      pointer-events: none;
    }

    .hero-inner {
      max-width: 1160px; margin: 0 auto; width: 100%;
      display: grid; grid-template-columns: 1fr 460px;
      gap: 64px; align-items: center;
      position: relative; z-index: 1;
    }

    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.2);
      color: rgba(255,255,255,0.9);
      font-size: 0.72rem; font-weight: 600;
      letter-spacing: 0.08em; text-transform: uppercase;
      padding: 6px 14px; border-radius: 100px;
      margin-bottom: 28px;
    }
    .hero-badge::before {
      content: ''; width: 6px; height: 6px; border-radius: 50%;
      background: var(--green-light); display: inline-block;
      animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.6; transform: scale(0.8); }
    }

    .hero h1 {
      font-family: 'Red Hat Display', sans-serif;
      font-size: clamp(2.4rem, 4.5vw, 3.8rem);
      font-weight: 900;
      line-height: 1.05;
      letter-spacing: -0.01em;
      color: white;
      margin-bottom: 24px;
    }
    .hero h1 .accent { color: var(--green-light); }

    .hero-sub {
      font-size: 1.05rem; font-weight: 300;
      color: rgba(255,255,255,0.72);
      line-height: 1.75; margin-bottom: 40px;
      max-width: 480px;
    }

    .hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
    .btn-white {
      display: inline-flex; align-items: center; gap: 8px;
      background: white; color: var(--green-deep);
      font-family: 'Inter', sans-serif;
      font-size: 0.925rem; font-weight: 700;
      padding: 14px 28px; border-radius: 8px;
      text-decoration: none; border: none; cursor: pointer;
      transition: opacity 0.2s, transform 0.15s;
    }
    .btn-white:hover { opacity: 0.92; transform: translateY(-1px); }
    .btn-ghost {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.25);
      color: white;
      font-family: 'Inter', sans-serif;
      font-size: 0.875rem; font-weight: 500;
      padding: 13px 22px; border-radius: 8px;
      text-decoration: none; transition: background 0.2s;
    }
    .btn-ghost:hover { background: rgba(255,255,255,0.18); }

    /* ── HERO CARD ── */
    .hero-card {
      background: rgba(255,255,255,0.08);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 20px; padding: 28px;
    }
    .card-header {
      display: flex; align-items: center; gap: 12px;
      margin-bottom: 24px; padding-bottom: 18px;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .card-avatar {
      width: 42px; height: 42px; border-radius: 50%;
      background: linear-gradient(135deg, var(--green-light), var(--green-acc));
      display: flex; align-items: center; justify-content: center;
      color: var(--green-deep); font-size: 0.95rem; font-weight: 900;
      font-family: 'Red Hat Display', sans-serif;
    }
    .card-name { font-size: 0.875rem; font-weight: 600; color: white; }
    .card-spec { font-size: 0.75rem; color: rgba(255,255,255,0.55); margin-top: 2px; }
    .card-pill {
      margin-left: auto;
      font-size: 0.68rem; font-weight: 700;
      background: rgba(122,182,72,0.25); color: #fff;
      padding: 4px 10px; border-radius: 100px;
      border: 1px solid rgba(122,182,72,0.3);
    }

    .card-steps { display: flex; flex-direction: column; }
    .card-step {
      display: flex; gap: 14px; align-items: flex-start;
      padding: 12px 0; position: relative;
    }
    .card-step:not(:last-child)::after {
      content: ''; position: absolute; left: 13px; top: 38px;
      width: 2px; height: calc(100% - 10px);
      background: rgba(255,255,255,0.08);
    }
    .card-step.done::after { background: rgba(122,182,72,0.4); }
    .step-dot {
      width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.7rem; font-weight: 700;
      border: 1.5px solid rgba(255,255,255,0.15);
      background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.3);
      position: relative; z-index: 1;
    }
    .card-step.done .step-dot { background: var(--green-acc); border-color: var(--green-acc); color: white; }
    .card-step.active .step-dot {
      background: white; border-color: white; color: var(--green-deep);
      box-shadow: 0 0 0 4px rgba(255,255,255,0.12);
    }
    .step-label { font-size: 0.82rem; font-weight: 500; color: rgba(255,255,255,0.5); padding-top: 4px; line-height: 1.3; }
    .card-step.done .step-label { color: rgba(255,255,255,0.55); }
    .card-step.active .step-label { color: white; font-weight: 600; }
    .step-sub { font-size: 0.72rem; color: rgba(255,255,255,0.35); margin-top: 2px; }
    .card-step.active .step-sub { color: rgba(255,255,255,0.5); }

    .card-slot {
      margin-top: 20px; padding-top: 16px;
      border-top: 1px solid rgba(255,255,255,0.1);
      display: flex; align-items: center; justify-content: space-between;
    }
    .slot-label { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.35); margin-bottom: 4px; }
    .slot-time { font-size: 0.875rem; font-weight: 600; color: white; }
    .slot-type { font-size: 0.72rem; color: rgba(255,255,255,0.45); }
    .slot-btn {
      background: var(--green-acc); color: white;
      font-size: 0.75rem; font-weight: 700;
      padding: 8px 16px; border-radius: 6px;
      border: none; cursor: pointer; font-family: 'Inter', sans-serif;
    }

    /* ── TICKER ── */
    .ticker-wrap {
      background: white;
      overflow: hidden; padding: 18px 0;
      position: relative;
    }
    .ticker-track {
      display: flex; gap: 0;
      animation: ticker 28s linear infinite;
      width: max-content;
    }
    @keyframes ticker {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }
    .ticker-item {
      display: flex; align-items: center; gap: 10px;
      padding: 0 48px;
      white-space: nowrap;
      font-size: 0.85rem; font-weight: 600;
      color: var(--muted);
      letter-spacing: 0.02em;
    }
    .ticker-item .num {
      font-family: 'Red Hat Display', sans-serif;
      font-size: 1.05rem; font-weight: 900;
      color: var(--green-deep);
    }
    .ticker-sep {
      width: 4px; height: 4px; border-radius: 50%;
      background: var(--border); flex-shrink: 0;
    }

    /* ── SECTION COMMUNE ── */
    .section-label {
      font-size: 0.72rem; font-weight: 700;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--green-acc); margin-bottom: 12px;
    }
    .section-title {
      font-family: 'Red Hat Display', sans-serif;
      font-size: clamp(1.8rem, 3vw, 2.5rem);
      font-weight: 900; line-height: 1.1;
      letter-spacing: -0.01em; color: var(--slate);
      margin-bottom: 12px;
    }
    .section-sub {
      font-size: 0.975rem; font-weight: 300; color: var(--muted); line-height: 1.7;
    }

    /* ── INDICATIONS ── */
    .indications {
      padding: 96px 48px;
      background: white;
    }
    .indications-inner { max-width: 1160px; margin: 0 auto; }
    .ind-header {
      display: flex; justify-content: space-between; align-items: flex-end;
      margin-bottom: 48px; flex-wrap: wrap; gap: 20px;
    }

    .ind-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
    .ind-card {
      border-radius: 14px; padding: 28px 24px;
      border: 1.5px solid var(--border);
      background: var(--bg);
      transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
      cursor: default; position: relative; overflow: hidden;
    }
    .ind-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(to right, var(--green-acc), var(--green-light));
      opacity: 0; transition: opacity 0.2s;
    }
    .ind-card:hover { border-color: var(--green-acc); box-shadow: 0 8px 32px rgba(45,80,22,0.1); transform: translateY(-2px); }
    .ind-card:hover::before { opacity: 1; }
    .ind-card.highlight {
      background: linear-gradient(135deg, #E8F0E2, #F0F5EC);
      border-color: #B8D4A0;
      cursor: pointer;
    }
    .ind-icon {
      width: 44px; height: 44px; border-radius: 10px;
      background: white; border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.25rem; margin-bottom: 16px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    }
    .ind-card.highlight .ind-icon { background: var(--green-deep); }
    .ind-name {
      font-family: 'Red Hat Display', sans-serif;
      font-size: 0.95rem; font-weight: 700; color: var(--slate);
      margin-bottom: 8px; line-height: 1.3;
    }
    .ind-card.highlight .ind-name { color: var(--green-deep); }
    .ind-desc { font-size: 0.8rem; color: var(--muted); line-height: 1.55; }
    .ind-tag {
      display: inline-block; margin-top: 14px;
      font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
      color: var(--green-deep); background: rgba(45,80,22,0.08);
      padding: 3px 10px; border-radius: 100px;
    }

    /* ── PARCOURS — fond dégradé vert → blanc ── */
    .parcours {
      padding: 96px 48px;
      background: linear-gradient(to bottom, #E8F2E0 0%, white 100%);
    }
    .parcours-inner { max-width: 1160px; margin: 0 auto; }
    .parcours-header { text-align: center; max-width: 520px; margin: 0 auto 64px; }

    .parcours-grid {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 0; position: relative;
    }
    .parcours-grid::before {
      content: ''; position: absolute;
      top: 30px; left: 12.5%; width: 75%; height: 2px;
      background: linear-gradient(to right, var(--green-acc), var(--green-light));
    }
    .p-step { padding: 0 16px; text-align: center; }
    .p-num {
      width: 60px; height: 60px; border-radius: 50%;
      background: white;
      border: 2px solid var(--green-acc);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.3rem;
      margin: 0 auto 20px;
      position: relative; z-index: 1;
      box-shadow: 0 0 0 8px #E8F2E0;
    }
    .p-title {
      font-family: 'Red Hat Display', sans-serif;
      font-size: 0.95rem; font-weight: 700; color: var(--slate);
      margin-bottom: 8px; line-height: 1.3;
    }
    .p-desc { font-size: 0.8rem; color: var(--muted); line-height: 1.55; }

    /* ── MÉDECINS — fond dégradé vert → blanc ── */
    .medecins {
      padding: 96px 48px;
      background: linear-gradient(to bottom, #F0F5EC 0%, white 100%);
    }
    .medecins-inner { max-width: 1160px; margin: 0 auto; }
    .medecins-layout {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: center;
    }
    .medecins-list { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
    .med-card {
      display: flex; align-items: center; gap: 14px;
      background: white; border: 1.5px solid var(--border);
      border-radius: 12px; padding: 16px 18px;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .med-card:hover { border-color: var(--green-acc); box-shadow: 0 4px 16px rgba(45,80,22,0.08); }
    .med-av {
      width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
      background: linear-gradient(135deg, #D4E8C4, #A8D070);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Red Hat Display', sans-serif;
      font-size: 0.85rem; font-weight: 900; color: var(--green-deep);
    }
    .med-name { font-size: 0.875rem; font-weight: 600; color: var(--slate); }
    .med-spec { font-size: 0.75rem; color: var(--muted); margin-top: 2px; }
    .med-dispo {
      margin-left: auto; font-size: 0.7rem; font-weight: 700;
      color: var(--green-acc); background: #E8F0E2;
      padding: 4px 10px; border-radius: 6px; white-space: nowrap;
    }

    .feat-list { display: flex; flex-direction: column; gap: 20px; }
    .feat {
      display: flex; gap: 14px; align-items: flex-start;
      padding: 18px; background: white;
      border: 1px solid var(--border); border-radius: 12px;
    }
    .feat-ico {
      width: 38px; height: 38px; flex-shrink: 0; border-radius: 8px;
      background: #E8F0E2;
      display: flex; align-items: center; justify-content: center; font-size: 1rem;
    }
    .feat h4 { font-size: 0.875rem; font-weight: 600; color: var(--slate); margin-bottom: 4px; }
    .feat p { font-size: 0.78rem; color: var(--muted); line-height: 1.5; }

    /* ── QUIZ CTA — fond dégradé vert ── */
    .quiz-section {
      background: linear-gradient(135deg, var(--green-deep) 0%, #3A6B1A 100%);
      padding: 96px 48px;
    }
    .quiz-inner { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
    .quiz-text .section-label { color: var(--green-light); }
    .quiz-text .section-title { color: white; }
    .quiz-text .section-sub { color: rgba(255,255,255,0.65); margin-bottom: 32px; }
    .quiz-checks { display: flex; flex-direction: column; gap: 10px; }
    .quiz-check {
      display: flex; align-items: center; gap: 10px;
      font-size: 0.875rem; color: rgba(255,255,255,0.8);
    }
    .quiz-check-dot {
      width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
      background: rgba(122,182,72,0.2); border: 1px solid var(--green-acc);
      display: flex; align-items: center; justify-content: center;
      font-size: 0.6rem; color: var(--green-acc); font-weight: 700;
    }

    .quiz-widget {
      background: rgba(255,255,255,0.07);
      backdrop-filter: blur(16px);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 20px; padding: 32px;
    }
    .quiz-prog { display: flex; gap: 5px; margin-bottom: 24px; }
    .qp-dot { height: 3px; flex: 1; border-radius: 2px; background: rgba(255,255,255,0.12); }
    .qp-dot.on { background: var(--green-acc); }
    .qp-dot.cur { background: rgba(255,255,255,0.4); }
    .quiz-q-label { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.4); margin-bottom: 8px; }
    .quiz-q-text { font-size: 0.925rem; font-weight: 500; color: white; margin-bottom: 20px; line-height: 1.5; }
    .quiz-opts { display: flex; flex-direction: column; gap: 8px; }
    .quiz-opt {
      display: flex; align-items: center; gap: 12px;
      background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
      border-radius: 8px; padding: 11px 14px;
      font-size: 0.84rem; color: rgba(255,255,255,0.8);
      font-family: 'Inter', sans-serif; text-align: left; width: 100%;
      cursor: pointer; transition: background 0.2s, border-color 0.2s;
    }
    .quiz-opt:hover { background: rgba(122,182,72,0.15); border-color: rgba(122,182,72,0.4); color: white; }
    .quiz-opt-radio {
      width: 16px; height: 16px; border-radius: 50%;
      border: 1.5px solid rgba(255,255,255,0.25); flex-shrink: 0;
    }
    .quiz-cta {
      margin-top: 20px; padding-top: 16px;
      border-top: 1px solid rgba(255,255,255,0.08);
      display: flex; justify-content: flex-end;
    }
    .btn-quiz {
      background: var(--green-acc); color: white;
      font-family: 'Inter', sans-serif;
      font-size: 0.85rem; font-weight: 700;
      padding: 10px 22px; border-radius: 8px; border: none; cursor: pointer;
    }

    /* ── GARANTIES — fond dégradé vert → blanc ── */
    .garanties {
      padding: 96px 48px;
      background: linear-gradient(to bottom, #EDF4E6 0%, white 100%);
    }
    .garanties-inner { max-width: 1160px; margin: 0 auto; }
    .gar-header { text-align: center; max-width: 480px; margin: 0 auto 48px; }
    .gar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .gar-card {
      background: white; border: 1.5px solid var(--border);
      border-radius: 14px; padding: 32px 26px;
      transition: box-shadow 0.2s;
    }
    .gar-card:hover { box-shadow: 0 8px 32px rgba(45,80,22,0.08); }
    .gar-icon { font-size: 1.8rem; margin-bottom: 16px; }
    .gar-title { font-family: 'Red Hat Display', sans-serif; font-size: 1rem; font-weight: 700; color: var(--slate); margin-bottom: 8px; }
    .gar-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.65; }

    /* ── CTA FINAL ── */
    .cta-final {
      background: var(--green-deep);
      padding: 96px 48px;
      text-align: center;
    }
    .cta-final h2 {
      font-family: 'Red Hat Display', sans-serif;
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      font-weight: 900; color: white; margin-bottom: 16px; letter-spacing: -0.01em;
    }
    .cta-final p { font-size: 1rem; color: rgba(255,255,255,0.6); margin-bottom: 36px; font-weight: 300; }
    .cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
    .cta-disclaimer { font-size: 0.75rem; color: rgba(255,255,255,0.3); margin-top: 20px; }

    /* ── FOOTER ── */
    footer {
      background: #fff; color: #000;
      padding: 40px 48px;
    }
    .footer-inner {
      max-width: 1160px; margin: 0 auto;
      display: flex; justify-content: space-between; align-items: center;
      flex-wrap: wrap; gap: 20px;
    }
    .footer-logo {
      font-family: 'Red Hat Display', sans-serif;
      font-size: 0.9rem; font-weight: 900;
      color: black; letter-spacing: 0.18em; text-transform: uppercase;
    }
    .footer-links { display: flex; gap: 24px; }
    .footer-links a { font-size: 0.78rem; color: #000; text-decoration: none; transition: color 0.2s; }
    .footer-links a:hover { color: grey; }
    .footer-legal { font-size: 0.72rem; line-height: 1.6; max-width: 520px; }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      nav { padding: 0 20px; }
      .nav-links { display: none; }
      .hero { padding: 100px 24px 72px; }
      .hero-inner { grid-template-columns: 1fr; gap: 40px; }
      .ind-grid { grid-template-columns: 1fr 1fr; }
      .parcours-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
      .parcours-grid::before { display: none; }
      .medecins-layout { grid-template-columns: 1fr; gap: 40px; }
      .quiz-inner { grid-template-columns: 1fr; gap: 40px; }
      .gar-grid { grid-template-columns: 1fr; }
      .indications, .parcours, .medecins, .quiz-section, .garanties, .cta-final, footer { padding-left: 24px; padding-right: 24px; }
    }

    /* ── FADE IN ── */
    .fi { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
    .fi.vis { opacity: 1; transform: none; }

    /* QUESTIONNAIRE */

    /* ── LAYOUT ── */
    .quiz-layout {
      display: grid;
      grid-template-columns: 280px 1fr;
      min-height: 100vh;
    }

    /* ── SIDEBAR ── */
    .sidebar {
      background: linear-gradient(166deg, #1b6549 0%, #112111 100%);
      padding: 150px 28px 40px 28px;
      display: flex; flex-direction: column;
      gap: 0;
    }
    .sidebar-title {
      font-family: 'Red Hat Display', sans-serif;
      font-size: 1rem; font-weight: 600;
      color: rgba(255,255,255,0.9);
      margin-bottom: 32px;
      line-height: 1.3;
    }
    .sidebar-steps { display: flex; flex-direction: column; }
    .sidebar-step {
      display: flex; gap: 14px; align-items: flex-start;
      padding: 14px 0;
      position: relative;
      cursor: default;
    }
    .sidebar-step:not(:last-child)::after {
      content: '';
      position: absolute;
      left: 13px; top: 44px;
      width: 2px; height: calc(100% - 16px);
      background: rgba(255,255,255,0.1);
    }
    .sidebar-step.done::after { background: rgba(122,182,72,0.5); }
    .sidebar-step.active::after { background: rgba(255,255,255,0.1); }
    .s-dot {
      width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.7rem; font-weight: 700;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.15);
      color: rgba(255,255,255,0.4);
      position: relative; z-index: 1;
      transition: all 0.3s;
    }
    .sidebar-step.done .s-dot {
      background: var(--green-acc); border-color: var(--green-acc);
      color: white;
    }
    .sidebar-step.active .s-dot {
      background: white; border-color: white;
      color: var(--green-deep); font-weight: 700;
      box-shadow: 0 0 0 4px rgba(255,255,255,0.15);
    }
    .s-label {
      font-size: 0.8rem; padding-top: 5px;
      color: rgba(255,255,255,0.35);
      line-height: 1.3; transition: color 0.3s;
    }
    .sidebar-step.active .s-label { color: rgba(255,255,255,0.9); font-weight: 500; }
    .sidebar-step.done .s-label { color: rgba(255,255,255,0.55); }

    .sidebar-note {
      margin-top: auto; padding-top: 32px;
      font-size: 0.75rem; color: rgba(255,255,255,0.35);
      line-height: 1.6; border-top: 1px solid rgba(255,255,255,0.08);
    }

    /* ── MAIN ── */
    .quiz-main {
      padding: 48px 64px;
      display: flex; flex-direction: column;
    }

    /* ── PROGRESS BAR ── */
    .progress-bar {
      width: 100%; height: 3px;
      background: var(--border); border-radius: 2px;
      margin-bottom: 48px; overflow: hidden;
    }
    .progress-fill {
      height: 100%; background: var(--green-acc);
      border-radius: 2px;
      transition: width 0.4s ease;
    }

    /* ── QUESTION ── */
    .question-wrap {
      max-width: 580px;
      animation: slideIn 0.35s ease;
    }
    @keyframes slideIn {
      from { opacity: 0; transform: translateX(16px); }
      to   { opacity: 1; transform: translateX(0); }
    }
    .q-eyebrow {
      font-size: 0.72rem; font-weight: 600;
      letter-spacing: 0.08em; text-transform: uppercase;
      color: var(--green-acc); margin-bottom: 12px;
    }
    .q-title {
      font-family: 'Red Hat Display', sans-serif;
      font-size: clamp(1.4rem, 3vw, 1.9rem);
      font-weight: 700; line-height: 1.2;
      color: var(--slate); margin-bottom: 8px;
      letter-spacing: 0em;
    }
    .q-sub {
      font-size: 0.875rem; color: var(--muted);
      margin-bottom: 32px; line-height: 1.6;
    }

    /* ── OPTIONS ── */
    .options { display: flex; flex-direction: column; gap: 10px; }
    .opt {
      display: flex; align-items: flex-start; gap: 14px;
      background: var(--white);
      border: 1.5px solid var(--border);
      border-radius: 10px; padding: 16px 18px;
      cursor: pointer; transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
      text-align: left; width: 100%;
      font-family: 'Inter', sans-serif;
    }
    .opt:hover {
      border-color: var(--green-acc);
      box-shadow: 0 2px 12px rgba(122,182,72,0.12);
    }
    .opt.selected {
      border-color: var(--green-deep);
      background: #F0F5EC;
      box-shadow: 0 2px 16px rgba(45,80,22,0.1);
    }
    .opt-check {
      width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
      border: 2px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      margin-top: 1px; transition: all 0.2s;
    }
    .opt.selected .opt-check {
      background: var(--green-deep); border-color: var(--green-deep);
    }
    .opt.selected .opt-check::after {
      content: ''; display: block;
      width: 6px; height: 6px;
      border-radius: 50%; background: white;
    }
    .opt-text { flex: 1; }
    .opt-label { font-size: 0.9rem; font-weight: 500; color: var(--slate); line-height: 1.4; }
    .opt-hint { font-size: 0.78rem; color: var(--muted); margin-top: 3px; line-height: 1.4; }

    /* Options grille (pour choix multiples visuels) */
    .options-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 10px;
    }

    /* ── NAV BUTTONS ── */
    .q-nav {
      display: flex; align-items: center; justify-content: space-between;
      margin-top: 36px; padding-top: 28px;
      border-top: 1px solid var(--border);
    }
    .btn-prev {
      display: flex; align-items: center; gap: 6px;
      font-size: 0.875rem; font-weight: 500; color: var(--muted);
      background: none; border: none; cursor: pointer;
      font-family: 'Inter', sans-serif; transition: color 0.2s;
      padding: 0;
    }
    .btn-prev:hover { color: var(--green-deep); }
    .btn-prev:disabled { opacity: 0.3; cursor: default; }
    .btn-next {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--green-deep); color: white;
      font-family: 'Inter', sans-serif;
      font-size: 0.9rem; font-weight: 600;
      padding: 12px 24px; border-radius: 8px;
      border: none; cursor: pointer;
      transition: background 0.2s, transform 0.15s, opacity 0.2s;
    }
    .btn-next:hover:not(:disabled) { background: var(--green-mid); transform: translateY(-1px); }
    .btn-next:disabled { opacity: 0.35; cursor: default; transform: none; }

    /* ── RÉSULTATS ── */
    .result-wrap {
      max-width: 640px;
      animation: slideIn 0.4s ease;
    }

    /* Résultat POSITIF */
    .result-eligible {
      background: linear-gradient(135deg, #E8F0E2, #F0F5EC);
      border: 1.5px solid #C5D9BB;
      border-radius: 16px; padding: 36px;
      margin-bottom: 32px;
    }
    .result-eligible-header {
      display: flex; align-items: center; gap: 16px;
      margin-bottom: 20px;
    }
    .result-icon {
      width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.5rem;
    }
    .result-icon.green { background: var(--green-deep); }
    .result-icon.red { background: var(--red); }
    .result-icon.amber { background: var(--amber); }
    .result-eligible h2 {
      font-family: 'Red Hat Display', sans-serif;
      font-size: 1.5rem; font-weight: 700;
      color: var(--green-deep); line-height: 1.2;
    }
    .result-eligible p {
      font-size: 0.9rem; color: var(--muted); line-height: 1.7;
      margin-bottom: 0;
    }

    /* Résultat NÉGATIF */
    .result-negative {
      background: var(--red-bg);
      border: 1.5px solid var(--red-border);
      border-radius: 16px; padding: 36px;
      margin-bottom: 32px;
    }
    .result-negative h2 {
      font-family: 'Red Hat Display', sans-serif;
      font-size: 1.5rem; font-weight: 700;
      color: var(--red); line-height: 1.2;
    }
    .result-negative p { font-size: 0.9rem; color: #6B2C25; line-height: 1.7; }

    /* Résultat INCERTAIN */
    .result-uncertain {
      background: var(--amber-bg);
      border: 1.5px solid var(--amber-border);
      border-radius: 16px; padding: 36px;
      margin-bottom: 32px;
    }
    .result-uncertain h2 {
      font-family: 'Red Hat Display', sans-serif;
      font-size: 1.5rem; font-weight: 700;
      color: var(--amber); line-height: 1.2;
    }
    .result-uncertain p { font-size: 0.9rem; color: #6B4A10; line-height: 1.7; }

    .result-summary {
      background: var(--white); border: 1px solid var(--border);
      border-radius: 12px; padding: 24px;
      margin-bottom: 28px;
    }
    .result-summary h3 {
      font-size: 0.8rem; font-weight: 600;
      text-transform: uppercase; letter-spacing: 0.08em;
      color: var(--muted); margin-bottom: 16px;
    }
    .summary-rows { display: flex; flex-direction: column; gap: 10px; }
    .summary-row {
      display: flex; align-items: flex-start; gap: 10px;
      font-size: 0.85rem;
    }
    .summary-row-icon { flex-shrink: 0; margin-top: 1px; }
    .summary-row-text { color: var(--slate); line-height: 1.4; }

    .result-actions { display: flex; flex-direction: column; gap: 12px; }
    .btn-primary-large {
      display: inline-flex; align-items: center; justify-content: center; gap: 10px;
      background: var(--green-deep); color: white;
      font-family: 'Inter', sans-serif;
      font-size: 1rem; font-weight: 600;
      padding: 16px 32px; border-radius: 10px;
      text-decoration: none; border: none; cursor: pointer;
      transition: background 0.2s, transform 0.15s;
      width: 100%;
    }
    .btn-primary-large:hover { background: var(--green-mid); transform: translateY(-1px); }
    .btn-outline {
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      background: transparent; color: var(--muted);
      font-family: 'Inter', sans-serif;
      font-size: 0.875rem; font-weight: 500;
      padding: 12px 24px; border-radius: 10px;
      text-decoration: none; border: 1.5px solid var(--border); cursor: pointer;
      transition: border-color 0.2s, color 0.2s;
      width: 100%;
    }
    .btn-outline:hover { border-color: var(--green-acc); color: var(--green-deep); }

    .result-disclaimer {
      margin-top: 24px;
      font-size: 0.75rem; color: var(--muted);
      line-height: 1.6;
      padding: 16px; background: var(--bg-alt);
      border-radius: 8px;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      nav { padding: 0 20px; }
      .quiz-layout { grid-template-columns: 1fr; }
      .sidebar { display: none; }
      .quiz-main { padding: 28px 20px; }
      .options-grid { grid-template-columns: 1fr; }
    }