/* Serge — pages services et illustrations */

.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* Pictogrammes */
.svc-icon { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; flex: none; }
.svc-icon .icon { width: 24px; height: 24px; }
.svc-icon--blue { background: var(--blue-bg); color: #2c4d82; }
.svc-icon--green { background: var(--green-bg); color: #28613c; }
.svc-icon--amber { background: var(--amber-bg); color: #8a5518; }
.svc-icon--violet { background: var(--violet-bg); color: #573a7c; }

/* Liste de l'accueil : les services deviennent des liens */
.level h3 a { text-decoration: none; }
.level li a { text-decoration: none; display: block; }
.level li a:hover { color: var(--accent); }
.levels__more { margin-top: 24px; }
.levels__more a { color: var(--accent); font-weight: 600; text-decoration: none; }

/* Index */
.hero--compact { padding: 64px 0 56px; }
.hero__title--md { font-size: clamp(36px, 5vw, 56px); max-width: 820px; }
.level-nav { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.level-nav__link { text-decoration: none; padding: 8px 16px; border-radius: 999px; font-weight: 600; font-size: 15px; border: 1px solid transparent; }
.level-nav__link--blue { background: var(--blue-bg); color: #2c4d82; }
.level-nav__link--green { background: var(--green-bg); color: #28613c; }
.level-nav__link--amber { background: var(--amber-bg); color: #8a5518; }
.level-nav__link--violet { background: var(--violet-bg); color: #573a7c; }
.level-head .section__lead { margin-bottom: 0; }
.level-head + .grid { margin-top: 36px; }

.svc-card {
  display: flex; flex-direction: column; gap: 10px; text-decoration: none; color: inherit;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px;
  transition: border-color .15s, transform .15s, box-shadow .15s;
}
.svc-card:hover { border-color: var(--ink); transform: translateY(-2px); box-shadow: var(--shadow); }
.svc-card__top { display: flex; justify-content: space-between; align-items: center; }
.svc-card__num { font: 600 14px/1 var(--sans); color: #98a0ab; font-variant-numeric: tabular-nums; }
.svc-card h3 { font: 600 21px/1.25 var(--serif); color: var(--ink); }
.svc-card p { color: var(--muted); font-size: 15.5px; }
.svc-card .svc-card__meta { margin-top: auto; padding-top: 8px; font-size: 14px; color: var(--ink); font-weight: 500; }

/* Page service : en-tête */
.svc-hero { background: var(--paper); padding: 48px 0 80px; border-bottom: 1px solid var(--line); }
.svc-hero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.crumbs { font-size: 14px; color: var(--muted); margin-bottom: 28px; }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--ink); }
.svc-hero__id { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.svc-hero__num { font-size: 14px; font-weight: 600; color: var(--muted); letter-spacing: .02em; }
.svc-hero__title { font: 600 clamp(38px, 5vw, 60px)/1.04 var(--serif); letter-spacing: -.02em; color: var(--ink); }
.svc-hero__tagline { margin-top: 18px; font-size: 20px; color: #3b4453; max-width: 560px; }
.facts { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin: 30px 0 0; background: var(--line); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.facts div { background: var(--white); padding: 14px 16px; }
.facts dt { font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); font-weight: 600; }
.facts dd { margin: 4px 0 0; color: var(--ink); font-weight: 500; font-size: 15.5px; line-height: 1.4; }

/* Problème */
.svc-problem { display: grid; grid-template-columns: 1.2fr .8fr; gap: 64px; align-items: start; }
.svc-problem__text { font: 400 clamp(22px, 2.4vw, 28px)/1.45 var(--serif); color: var(--ink); }
.svc-signals { background: var(--paper); border-radius: var(--radius); padding: 26px 28px; }
.svc-signals__title { font: 600 18px/1.3 var(--serif); color: var(--ink); margin-bottom: 12px; }
.svc-signals ul { list-style: none; margin: 0; padding: 0; }
.svc-signals li { position: relative; padding: 9px 0 9px 26px; border-top: 1px solid var(--line); color: #3b4453; font-size: 15.5px; }
.svc-signals li:first-child { border-top: 0; }
.svc-signals li::before { content: "→"; position: absolute; left: 0; color: var(--accent); font-weight: 600; }

/* Livrables et déroulé */
.deliverables .card { position: relative; }
.deliverable__num { display: block; font: 600 13px/1 var(--sans); color: var(--accent); margin-bottom: 14px; }
.flow { list-style: none; counter-reset: flow; display: grid; gap: 20px; padding: 0; margin: 44px 0 0; grid-template-columns: repeat(4, 1fr); }
.flow--3 { grid-template-columns: repeat(3, 1fr); }
.flow--5 { grid-template-columns: repeat(5, 1fr); }
.flow li { counter-increment: flow; position: relative; padding-top: 56px; }
.flow li::before {
  content: counter(flow); position: absolute; top: 0; left: 0; width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center; background: var(--ink); color: var(--paper); font: 600 15px/1 var(--sans);
}
.flow li::after { content: ""; position: absolute; top: 19px; left: 48px; right: -10px; height: 1px; background: var(--line); }
.flow li:last-child::after { display: none; }
.flow h3 { font: 600 19px/1.3 var(--serif); color: var(--ink); margin-bottom: 8px; }
.flow p { color: var(--muted); font-size: 15.5px; }

/* Exemple */
.case { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; margin-top: 36px; }
.case__story p { color: #c3ccd9; margin-bottom: 16px; }
.case__story .case__context { color: var(--white); font: 400 20px/1.5 var(--serif); }
.results { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin-top: 44px; }
.result { border-top: 2px solid var(--accent); padding-top: 16px; }
.result__value { font: 600 clamp(32px, 4vw, 44px)/1 var(--serif); color: var(--white); }
.result__label { margin-top: 8px; color: #aab5c5; font-size: 15px; }
.case__note { margin-top: 28px; font-size: 13px; color: #6f7c91; }

/* Mémoire et progression */
.svc-memory { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.panel-lite { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.svc-memory__text { font: 400 20px/1.5 var(--serif); color: var(--ink); }
.progression { margin: 0; }
.progression div { display: grid; grid-template-columns: 130px 1fr; gap: 12px; padding: 10px 0; border-top: 1px solid var(--line); }
.progression div:first-child { border-top: 0; padding-top: 0; }
.progression dt { color: var(--muted); font-size: 14.5px; }
.progression dd { margin: 0; color: var(--ink); font-size: 15.5px; }
.progression a { color: var(--accent); text-decoration: none; font-weight: 500; }

/* ---------- Illustrations ---------- */
.illus { margin: 0; border-radius: 20px; padding: 22px; font-size: 14px; box-shadow: 0 24px 50px rgb(15 27 45 / 16%); }
.illus figcaption { margin-top: 12px; font-size: 12px; text-align: right; color: #8e9bb0; }
.illus__bar { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 14px; }
.illus__live { color: #f0a27f; }
.illus__heading { font: 600 17px/1.3 var(--serif); margin-bottom: 14px; }

.illus--chat, .illus--dashboard { background: var(--ink); color: #dfe5ee; }
.illus--chat .illus__bar, .illus--dashboard .illus__bar { color: #8e9bb0; }
.illus--report, .illus--timeline, .illus--compare, .illus--checklist { background: var(--white); color: var(--text); border: 1px solid var(--line); }
.illus--report figcaption, .illus--timeline figcaption, .illus--compare figcaption, .illus--checklist figcaption { color: #98a0ab; }
.illus__heading { color: var(--ink); }
.case__visual .illus { box-shadow: none; }

/* Chat */
.chat { display: flex; flex-direction: column; gap: 10px; }
.chat__msg { display: flex; gap: 8px; align-items: flex-end; max-width: 88%; }
.chat__msg--ceo { align-self: flex-end; }
.chat__avatar {
  flex: none; width: 28px; height: 28px; border-radius: 8px; display: grid; place-items: center;
  font: 600 13px/1 var(--serif); background: var(--paper); color: var(--ink);
}
.chat__msg--expert .chat__avatar { background: #f0a27f; color: var(--ink); font-family: var(--sans); }
.chat__bubble { padding: 10px 14px; border-radius: 14px; line-height: 1.45; font-size: 14.5px; }
.chat__msg--serge .chat__bubble, .chat__msg--expert .chat__bubble { background: var(--ink-2); border: 1px solid var(--line-dark); color: var(--white); border-bottom-left-radius: 4px; }
.chat__msg--ceo .chat__bubble { background: var(--accent); color: var(--white); border-bottom-right-radius: 4px; }
.chat__name { display: block; font-size: 12px; color: #f0a27f; font-weight: 600; margin-bottom: 2px; }

/* Rapport */
.doc__head { display: flex; gap: 12px; align-items: center; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.doc__mark { flex: none; width: 32px; height: 32px; border-radius: 9px; background: var(--ink); color: var(--paper); display: grid; place-items: center; font: 600 17px/1 var(--serif); }
.doc__title { font: 600 16.5px/1.3 var(--serif); color: var(--ink); }
.doc__meta { font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.doc__summary { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin: 14px 0 4px; }
.doc__score { color: var(--muted); font-size: 13.5px; }
.doc__score strong { font: 600 22px/1 var(--serif); color: var(--ink); }
.pill { display: inline-block; padding: 5px 12px; border-radius: 999px; font-weight: 600; font-size: 13px; }
.pill.is-green { background: var(--green-bg); color: #28613c; }
.pill.is-amber { background: var(--amber-bg); color: #8a5518; }
.pill.is-red { background: #fdeceb; color: #9b2a1e; }
.doc__rows { margin: 10px 0 0; }
.doc__rows div { display: grid; grid-template-columns: 42% 1fr; gap: 12px; padding: 9px 0; border-bottom: 1px dashed var(--line); }
.doc__rows dt { color: var(--muted); }
.doc__rows dd { margin: 0; color: var(--ink); font-weight: 500; }
.doc__notes { list-style: none; margin: 12px 0 0; padding: 12px 14px; background: var(--paper); border-radius: 10px; }
.doc__notes li { position: relative; padding-left: 16px; color: #3b4453; font-size: 13.5px; }
.doc__notes li + li { margin-top: 6px; }
.doc__notes li::before { content: ""; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

/* Tableau de bord */
.dash__metrics { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 10px; }
.dash__metric { background: var(--ink-2); border: 1px solid var(--line-dark); border-radius: 12px; padding: 14px; }
.dash__label { font-size: 11.5px; letter-spacing: .05em; text-transform: uppercase; color: #8e9bb0; }
.dash__value { font: 600 28px/1.1 var(--serif); color: var(--white); margin-top: 6px; }
.dash__hint { font-size: 12px; color: #8e9bb0; margin-top: 4px; }
.dash__bars { margin-top: 14px; background: var(--ink-2); border: 1px solid var(--line-dark); border-radius: 12px; padding: 12px 14px; }
.dash__bar { display: grid; grid-template-columns: 38% 1fr auto; gap: 10px; align-items: center; padding: 6px 0; }
.dash__bar-label { color: #c9d2df; font-size: 13px; }
.dash__track { height: 6px; border-radius: 99px; background: var(--line-dark); overflow: hidden; }
.dash__track span { display: block; height: 100%; border-radius: 99px; background: var(--accent); }
.dash__bar-value { color: var(--white); font-size: 12.5px; font-variant-numeric: tabular-nums; white-space: nowrap; }

/* Chronologie */
.tl { list-style: none; margin: 0; padding: 0; position: relative; }
.tl::before { content: ""; position: absolute; left: 7px; top: 8px; bottom: 8px; width: 2px; background: var(--line); }
.tl__step { position: relative; display: grid; grid-template-columns: 90px 1fr; gap: 12px; padding: 0 0 14px 26px; }
.tl__step::before { content: ""; position: absolute; left: 1px; top: 5px; width: 14px; height: 14px; border-radius: 50%; background: var(--white); border: 3px solid var(--accent); }
.tl__when { font-size: 12.5px; font-weight: 600; color: var(--accent); padding-top: 2px; }
.tl__title { color: var(--ink); font-weight: 600; font-size: 14.5px; }
.tl__text { color: var(--muted); font-size: 13.5px; margin-top: 2px; }

/* Avant / après */
.cmp { display: grid; grid-template-columns: 1fr auto 1fr; gap: 10px; align-items: stretch; }
.cmp__col { border-radius: 12px; padding: 14px; }
.cmp__col--before { background: #f4f1ec; }
.cmp__col--after { background: var(--green-bg); }
.cmp__title { font: 600 14.5px/1.3 var(--serif); color: var(--ink); margin-bottom: 8px; }
.cmp ul { list-style: none; margin: 0; padding: 0; }
.cmp li { padding: 6px 0; border-top: 1px solid rgb(15 27 45 / 8%); font-size: 13.5px; color: #3b4453; line-height: 1.4; }
.cmp li:first-child { border-top: 0; }
.cmp__col--before li { color: #6b7280; }
.cmp__col--after li { color: #1e3a28; font-weight: 500; }
.cmp__arrow { align-self: center; color: var(--accent); font-size: 20px; font-weight: 600; }

/* Liste de contrôle */
.chk { list-style: none; margin: 0; padding: 0; }
.chk__item { display: flex; gap: 12px; align-items: flex-start; padding: 10px 0; border-top: 1px solid var(--line); color: #3b4453; font-size: 14.5px; line-height: 1.45; }
.chk__item:first-child { border-top: 0; }
.chk__box { flex: none; width: 22px; height: 22px; border-radius: 6px; display: grid; place-items: center; font-size: 13px; font-weight: 700; border: 1.5px solid #cfc6b8; color: var(--white); }
.chk__item--done .chk__box { background: var(--ok); border-color: var(--ok); }
.chk__item--alert .chk__box { background: var(--accent); border-color: var(--accent); }
.chk__item--done > span:nth-child(2) { color: var(--muted); }

/* L'exemple est sur fond sombre : les visuels clairs restent lisibles, le chat et le tableau de bord s'en détachent */
.section--dark .illus--chat, .section--dark .illus--dashboard { border: 1px solid var(--line-dark); }

@media (max-width: 960px) {
  .svc-hero__grid, .svc-problem, .case, .svc-memory { grid-template-columns: 1fr; gap: 40px; }
  .flow, .flow--3, .flow--5 { grid-template-columns: 1fr 1fr; }
  .flow li::after { display: none; }
}

@media (max-width: 640px) {
  .facts, .flow, .flow--3, .flow--5 { grid-template-columns: 1fr; }
  .cmp { grid-template-columns: 1fr; }
  .cmp__arrow { transform: rotate(90deg); justify-self: center; }
  .tl__step { grid-template-columns: 1fr; gap: 2px; }
  .progression div { grid-template-columns: 1fr; gap: 2px; }
  .dash__bar { grid-template-columns: 1fr auto; }
  .dash__bar-label { grid-column: 1 / -1; }
  .illus { padding: 16px; }
}

/* Page experts */
.profiles li { display: flex; flex-direction: column; gap: 2px; }
.profiles small { color: var(--muted); font-size: 13px; line-height: 1.35; }
.services-pick { border: 0; padding: 0; margin: 0 0 18px; }
.services-pick legend { font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 10px; }
.services-pick__group { margin-bottom: 12px; }
.services-pick__level { font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 6px; }
.services-pick__level--blue { color: #2c4d82; } .services-pick__level--green { color: #28613c; }
.services-pick__level--amber { color: #8a5518; } .services-pick__level--violet { color: #573a7c; }
.field .services-pick__item { display: inline-flex; font-weight: 500; color: var(--text); align-items: center; gap: 8px; margin: 0 8px 8px 0; padding: 7px 12px; border: 1px solid #d5cdbf; border-radius: 999px; font-size: 14px; cursor: pointer; background: var(--white); }
.field .services-pick__item:has(input:checked) { border-color: var(--accent); background: #fdf1eb; color: var(--ink); }
.services-pick__item input { accent-color: var(--accent); margin: 0; }
.cta .cta__aside { margin: 22px 0 0; font-size: 15px; opacity: .95; } .cta__aside a { color: var(--white); font-weight: 600; }

/* Démo Jumeau */
.jumeau-hero { padding: 72px 0 88px; }
.jumeau-form { display: flex; gap: 10px; margin-top: 30px; background: var(--white); border: 1px solid var(--line); border-radius: 999px; padding: 6px; box-shadow: var(--shadow); max-width: 620px; }
.jumeau-form__input { flex: 1; min-width: 0; border: 0; background: transparent; padding: 10px 18px; font: 400 17px/1.4 var(--sans); color: var(--ink); }
.jumeau-form__input:focus { outline: none; }
.jumeau-form--compact { margin-top: 24px; }
.jumeau-notes { list-style: none; margin: 26px 0 0; padding: 0; color: var(--muted); font-size: 14.5px; }
.jumeau-notes li { padding-left: 18px; position: relative; margin-top: 6px; }
.jumeau-notes li::before { content: "·"; position: absolute; left: 4px; color: var(--accent); font-weight: 700; }
.jumeau-off { margin-top: 24px; color: var(--muted); }
.jumeau-off a { color: var(--accent); font-weight: 600; }
.reading { list-style: none; margin: 34px 0 0; padding: 0; }
.reading__step { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-top: 1px solid var(--line); color: #98a0ab; font-size: 16px; }
.reading__step:first-child { border-top: 0; }
.reading__dot { width: 12px; height: 12px; border-radius: 50%; border: 2px solid #cfc6b8; flex: none; }
.reading__step--done { color: var(--ink); }
.reading__step--done .reading__dot { background: var(--ok); border-color: var(--ok); }
.reading__step--active { color: var(--ink); font-weight: 600; }
.reading__step--active .reading__dot { border-color: var(--accent); background: var(--accent); animation: pulse 1.2s ease-in-out infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 6px rgb(224 96 43 / 20%); } }
@media (prefers-reduced-motion: reduce) { .reading__step--active .reading__dot { animation: none; } }

.jumeau-top { background: var(--paper); padding: 56px 0 80px; border-bottom: 1px solid var(--line); }
.jumeau-top__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.dash__value--sm { font-size: 19px; line-height: 1.25; }
.jumeau-card__body .dash__label { margin-top: 4px; }
.jumeau-card__text { color: var(--white); font-size: 14.5px; margin: 4px 0 12px; }
.jumeau-card__chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.jumeau-card figcaption { display: flex; justify-content: flex-end; align-items: center; gap: 6px; }
.chip--light { border-color: var(--line); color: #3b4453; background: var(--paper); }
.usecase { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; display: flex; flex-direction: column; gap: 10px; }
.usecase__top { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.usecase__num { font: 600 13px/1 var(--sans); color: var(--accent); }
.usecase h3 { font: 600 20px/1.3 var(--serif); color: var(--ink); }
.usecase > p { color: var(--muted); font-size: 15.5px; }
.usecase__gain { background: var(--paper); border-radius: 10px; padding: 12px 14px; margin-top: auto; }
.usecase__gain-value { font: 600 20px/1.25 var(--serif); color: var(--ink); }
.usecase__gain-basis { font-size: 13px; color: var(--muted); margin-top: 4px; }
.usecase__foot { display: flex; justify-content: space-between; align-items: center; gap: 10px; flex-wrap: wrap; }
.usecase__service { color: var(--accent); font-weight: 600; font-size: 14.5px; text-decoration: none; }
.first-service__head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.first-service__head h3 { font: 600 24px/1.2 var(--serif); }
.first-service__head a { color: var(--ink); text-decoration: none; }
.first-service__meta { margin-top: 14px; font-size: 14px; color: var(--muted); }
.jumeau-questions { list-style: none; margin: 0; padding: 0; }
.jumeau-questions li { padding: 10px 0 10px 26px; position: relative; border-top: 1px solid var(--line); color: var(--ink); }
.jumeau-questions li:first-child { border-top: 0; }
.jumeau-questions li::before { content: "?"; position: absolute; left: 0; top: 10px; font: 600 16px/1.4 var(--serif); color: var(--accent); }
.jumeau-offer__title { margin-top: 24px; }
.form__jumeau { background: var(--green-bg); color: #1e3a28; border-radius: 10px; padding: 10px 14px; font-size: 14.5px; margin-bottom: 18px; }

/* Encart de l'accueil */
.try { background: var(--ink); color: #dfe5ee; padding: 64px 0; }
.try__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.try h2 { font: 600 clamp(28px, 3.4vw, 38px)/1.15 var(--serif); color: var(--white); }
.try p { color: #aab5c5; margin-top: 12px; }
.try .jumeau-form { margin-top: 0; box-shadow: none; }

@media (max-width: 960px) {
  .jumeau-top__grid, .try__grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 640px) {
  .jumeau-form { flex-direction: column; border-radius: 18px; }
  .jumeau-form .btn { width: 100%; }
}

/* Visite du cockpit (accueil) */
.tour { margin-top: 36px; }
.tour__tabs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 22px; }
.tour__tab { border: 1px solid var(--line); background: var(--white); color: var(--muted); padding: 9px 16px; border-radius: 999px; font: 500 15px/1 var(--sans); cursor: pointer; }
.tour__tab:hover { color: var(--ink); border-color: var(--ink); }
.tour__tab.is-active { background: var(--ink); border-color: var(--ink); color: var(--white); }
.tour__panel { display: grid; grid-template-columns: 1fr; gap: 22px; }
.tour__caption { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr); gap: 32px; align-items: end; }
.tour__panel[hidden] { display: none; }
.tour__caption h3 { font: 600 26px/1.2 var(--serif); color: var(--ink); }
.tour__caption p { color: var(--muted); font-size: 17px; }
.browser { margin: 0; border-radius: 14px; overflow: hidden; border: 1px solid #d9d2c5; box-shadow: 0 30px 60px rgb(15 27 45 / 18%); background: var(--white); }
.browser__bar { display: flex; align-items: center; gap: 6px; padding: 10px 14px; background: #efe9df; border-bottom: 1px solid #ddd5c8; }
.browser__bar span { width: 11px; height: 11px; border-radius: 50%; background: #d3cabb; }
.browser__bar em { margin-left: 12px; font-style: normal; font-size: 12.5px; color: var(--muted); background: var(--white); padding: 3px 12px; border-radius: 999px; }
.browser img { display: block; width: 100%; height: auto; }

/* Parcours des 30 premiers jours */
.journey { list-style: none; margin: 44px 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; counter-reset: journey; }
.journey__step { position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.journey__when { display: inline-block; font-size: 12.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--accent); }
.journey__step h3 { font: 600 20px/1.25 var(--serif); color: var(--ink); margin: 8px 0; }
.journey__step p { color: var(--muted); font-size: 15.5px; }

@media (max-width: 960px) {
  .tour__caption { grid-template-columns: 1fr; gap: 8px; }
  .journey { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .journey { grid-template-columns: 1fr; }
  .tour__tabs { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 6px; }
  .tour__tab { flex: none; }
}
