/* ==========================================================================
   HORAE · inner pages (Cas d’usage, Intégrations)
   Built on the tokens and components of style.css.
   ========================================================================== */

.page main { position: relative; }

/* ---------- Page hero ---------- */
.phero {
  position: relative;
  min-height: 100vh; min-height: 100svh;
  padding: calc(var(--nav-h) + 8vh) var(--pad) 7vh;
  display: grid; grid-template-rows: auto 1fr; row-gap: 7vh;
  background: linear-gradient(180deg, var(--paper) 0%, #eef3f7 100%);
  overflow: hidden;
}
.phero__head { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); column-gap: 6vw; align-items: end; }
.phero__head .eyebrow { grid-column: 1 / -1; margin-bottom: 26px; }
.phero__title { font-family: var(--serif); font-weight: 400; font-size: clamp(3.1rem, 7.4vw, 8.2rem); line-height: .96; letter-spacing: -.05em; }
.phero__title .line { display: block; overflow: hidden; padding-bottom: .08em; margin-bottom: -.08em; }
.phero__title .line > * { display: inline-block; will-change: transform; }
.phero__title em { color: var(--title-gray); padding-right: .06em; }
.phero__lead { justify-self: end; max-width: 440px; padding-bottom: 1.1em; font-size: clamp(1.05rem, 1.35vw, 1.22rem); line-height: 1.7; color: var(--muted); }

/* index of the four objectives */
.uindex { list-style: none; margin: 0; padding: 0; align-self: end; border-top: 1px solid #d6dee4; }
.uindex a {
  position: relative; isolation: isolate; overflow: hidden;
  display: grid; grid-template-columns: 64px minmax(0, 1.05fr) minmax(0, 1fr) 26px; align-items: center; gap: 24px;
  padding: 2.4vh 14px; border-bottom: 1px solid #d6dee4;
  transition: color .5s var(--ease-out), padding .7s var(--ease-out);
}
.uindex a::before {
  content: ""; position: absolute; inset: 0; z-index: -1; background: var(--ink);
  transform: scaleY(0); transform-origin: bottom; transition: transform .6s var(--ease-out);
}
.uindex a:hover, .uindex a:focus-visible { color: #fff; padding-left: 30px; }
.uindex a:hover::before, .uindex a:focus-visible::before { transform: scaleY(1); transform-origin: top; }
.uindex__n { font-size: 12px; letter-spacing: .2em; color: var(--sub); transition: color .5s; }
.uindex__name { font-family: var(--serif); font-size: clamp(1.7rem, 3.1vw, 3.3rem); line-height: 1.08; letter-spacing: -.03em; }
.uindex__line { font-size: 15px; color: var(--muted); transition: color .5s; }
.uindex a:hover .uindex__n, .uindex a:hover .uindex__line { color: rgba(255,255,255,.62); }
.uindex .arrow { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.3; transition: transform .7s var(--ease-out); }
.uindex a:hover .arrow { transform: rotate(45deg); }

/* ==========================================================================
   Cas d’usage · pinned chapters
   ========================================================================== */
.ucx { position: relative; background: var(--paper); }
.ucx__pin {
  position: relative; height: 100vh; height: 100svh;
  padding: calc(var(--nav-h) + 6px) var(--pad) 34px;
  display: grid; grid-template-rows: auto minmax(0, 1fr); row-gap: 3.2vh;
  background: linear-gradient(180deg, #eef3f7 0%, var(--paper) 36%);
  overflow: hidden;
}
.ucx__rail { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.ucx__rail button { position: relative; display: flex; align-items: baseline; gap: 12px; padding: 16px 0 4px; text-align: left; font-size: 13.5px; color: var(--muted); transition: color .4s; }
.ucx__rail button span { font-size: 11px; letter-spacing: .18em; color: var(--sub); }
.ucx__rail button i { position: absolute; top: 0; left: 0; right: 0; height: 1px; background: #d6dee4; overflow: hidden; }
.ucx__rail button i b { position: absolute; inset: 0; background: var(--ink); transform-origin: left; transform: scaleX(0); }
.ucx__rail button.is-active { color: var(--ink); }

.ucx__chapters { position: relative; min-height: 0; }
.ucx__ch { position: absolute; inset: 0; display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); column-gap: 5vw; align-items: center; pointer-events: none; }
.ucx__ch.is-active { pointer-events: auto; }
.ucx__text { max-width: 500px; }
.ucx__cat { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; font-size: 12px; letter-spacing: .26em; text-transform: uppercase; color: var(--sub); font-weight: 500; }
.ucx__cat span { font-family: var(--serif); font-size: 16px; letter-spacing: 0; color: var(--ink); padding-right: 16px; border-right: 1px solid #cfd8df; }
.ucx__title { font-size: clamp(2.2rem, 3.7vw, 4.1rem); line-height: 1.03; letter-spacing: -.04em; margin-bottom: 22px; }
.ucx__desc { font-size: clamp(1rem, 1.12vw, 1.08rem); line-height: 1.7; color: var(--muted); margin-bottom: 22px; }
.ucx__acts { list-style: none; margin: 0 0 22px; padding: 0; }
.ucx__acts li { position: relative; padding: 11px 0 11px 28px; border-top: 1px solid var(--line); font-size: 15px; line-height: 1.45; }
.ucx__acts li::before { content: ""; position: absolute; left: 2px; top: 17px; width: 9px; height: 9px; border-radius: 50%; border: 1px solid var(--sub); transition: background .5s; }
.ucx__ch.is-active .ucx__acts li::before { background: var(--sub); }
.ucx__foot { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-top: 18px; border-top: 1px solid var(--line); }
.ucx__kpis { font-size: 14px; line-height: 1.45; }
.ucx__kpis span { display: block; margin-bottom: 4px; font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--sub); }
.ucx__link { flex: none; display: inline-flex; align-items: center; gap: 10px; padding-bottom: 4px; font-size: 14px; border-bottom: 1px solid currentColor; transition: color .3s; }
.ucx__link .arrow { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 1.5; transition: transform .6s var(--ease-out); }
.ucx__link:hover { color: var(--blue); }
.ucx__link:hover .arrow { transform: rotate(45deg); }

/* ---------- scenes: product-UI fragments on a quiet canvas ---------- */
.ucx__scene { position: relative; height: min(600px, 100%); }
.scn::before {
  content: ""; position: absolute; inset: 3% 0 3% 4%; border-radius: 30px;
  background:
    radial-gradient(circle, rgba(62,109,142,.10) 1px, transparent 1.4px) 0 0 / 22px 22px,
    linear-gradient(160deg, #e8eef3, #f5f7f9);
}
.scard {
  position: absolute; z-index: 1;
  background: #fff; border-radius: 18px;
  border: 1px solid rgba(17,19,21,.06);
  box-shadow: 0 34px 60px -34px rgba(24,45,64,.32), 0 10px 20px -14px rgba(24,45,64,.18);
  font-size: 13px; line-height: 1.4;
}
.scard header { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 14px; }
.scard header b { font-weight: 500; font-size: 14px; }
.scard header span { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--title-gray); }
.av { flex: none; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; background: #e4ebf1; color: var(--blue-deep); font-size: 11.5px; font-weight: 600; letter-spacing: .02em; }
.scn-kpi {
  position: absolute; z-index: 2; padding: 16px 20px 14px; border-radius: 16px;
  background: var(--ink); color: #fff;
  box-shadow: 0 30px 50px -26px rgba(17,19,21,.6);
}
.scn-kpi small { display: block; font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--sub-dark); margin-bottom: 4px; }
.scn-kpi p { display: flex; align-items: baseline; gap: 6px; }
.scn-kpi b { font-family: var(--serif); font-weight: 400; font-size: 44px; line-height: 1; letter-spacing: -.03em; font-variant-numeric: tabular-nums; }
.scn-kpi span { font-size: 14px; color: rgba(255,255,255,.6); }
.scn-note { position: absolute; right: 2%; bottom: 0; font-size: 9.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--title-gray); }

/* 01 · CRM */
.scn-prod { left: 8%; top: 8%; width: 46%; padding: 16px 18px; display: grid; grid-template-columns: 58px 1fr; column-gap: 14px; align-items: center; }
.scn-prod img { width: 58px; height: 74px; object-fit: contain; filter: drop-shadow(0 8px 10px rgba(0,0,0,.18)); }
.scn-prod small, .scn-owner small { display: block; font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--title-gray); }
.scn-prod b { display: block; font-family: var(--serif); font-weight: 400; font-size: 18px; }
.scn-prod span { font-size: 12px; color: var(--muted); }
.scn-prod em { grid-column: 1 / -1; margin-top: 12px; padding-top: 10px; border-top: 1px solid var(--line); font-style: normal; font-size: 12px; color: var(--muted); }
.scn-link { position: absolute; z-index: 0; left: 30%; top: 30%; width: 16%; height: 12%; overflow: visible; }
.scn-link path { fill: none; stroke: var(--blue-light); stroke-width: 1.5; stroke-dasharray: 1; stroke-dashoffset: 1; vector-effect: non-scaling-stroke; }
.scn-owner { left: 44%; top: 30%; width: 50%; padding: 20px 22px; display: grid; grid-template-columns: 56px 1fr; column-gap: 16px; align-items: center; }
.scn-owner__av { position: relative; width: 56px; height: 56px; }
.scn-owner__av span { position: absolute; inset: 0; border-radius: 50%; display: grid; place-items: center; }
.scn-owner__av .q { border: 1px dashed #b9c6cf; color: var(--title-gray); font-family: var(--serif); font-size: 22px; }
.scn-owner__av .i { background: var(--ink); color: #fff; font-weight: 600; font-size: 16px; opacity: 0; }
.scn-owner__id { position: relative; display: grid; }
.scn-owner__id .u { position: absolute; top: 12px; left: 0; }
.scn-owner__id b { font-family: var(--serif); font-weight: 400; font-size: 21px; line-height: 1.2; }
.scn-owner__id span { font-size: 12.5px; color: var(--muted); }
.scn-owner__badge { grid-column: 1 / -1; justify-self: start; display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; padding: 6px 12px; border-radius: 30px; background: #eaf4ee; color: #2f7a52; font-size: 12px; }
.scn-owner__badge i { width: 6px; height: 6px; border-radius: 50%; background: #3fa46f; }
.scn-owner__tags { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 6px; list-style: none; margin: 12px 0 0; padding: 0; }
.scn-owner__tags li { padding: 5px 10px; border: 1px solid var(--line); border-radius: 30px; font-size: 11.5px; color: var(--muted); }
.scn-crm { left: 8%; top: 62%; width: 46%; padding: 16px 18px 10px; }
.scn-row { display: grid; grid-template-columns: 34px 1fr auto auto; align-items: center; gap: 10px; padding: 7px 8px; margin: 0 -8px; border-radius: 10px; }
.scn-row b { font-weight: 500; }
.scn-row em { font-style: normal; font-size: 12px; color: var(--muted); }
.scn-row i { font-style: normal; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--blue-deep); background: rgba(151,184,207,.35); padding: 3px 8px; border-radius: 20px; }
.scn--crm .scn-kpi { right: 6%; top: 70%; }

/* 02 · SELLOUT */
.scn-flow { left: 8%; right: 6%; top: 7%; padding: 18px 22px; display: flex; align-items: center; gap: 12px; }
.scn-flow__n { flex: none; display: flex; align-items: center; gap: 9px; font-size: 13px; }
.scn-flow__n i { width: 10px; height: 10px; border-radius: 50%; border: 1.5px solid var(--ink); }
.scn-flow__n--end i { background: var(--blue); border-color: var(--blue); }
.scn-flow__n b { font-weight: 500; }
.scn-flow__l { flex: 1; display: grid; gap: 6px; text-align: center; }
.scn-flow__l span { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--title-gray); }
.scn-flow__l i { position: relative; height: 2px; background: #e1e7ec; border-radius: 2px; overflow: hidden; }
.scn-flow__l i b { position: absolute; inset: 0; background: #b3c2cd; transform-origin: left; transform: scaleX(0); }
.scn-flow__l--act i b { background: var(--blue); }
.scn-chart { left: 8%; top: 29%; width: 54%; padding: 20px 22px 18px; }
.scn-legend { display: flex; align-items: center; gap: 8px; margin: -4px 0 14px; font-size: 11.5px; color: var(--muted); }
.scn-legend i { width: 10px; height: 10px; border-radius: 3px; margin-left: 8px; }
.scn-legend i:first-child { margin-left: 0; }
.scn-legend .a { background: #d3dce3; } .scn-legend .b { background: var(--blue); }
.scn-bars { display: grid; gap: 12px; }
.scn-bar { position: relative; display: grid; grid-template-columns: 62px 1fr 46px; align-items: center; gap: 12px; padding: 6px 8px; margin: 0 -8px; border-radius: 10px; }
.scn-bar span { font-size: 12.5px; }
.scn-bar p { position: relative; height: 12px; border-radius: 6px; background: #f0f3f6; }
.scn-bar p i { position: absolute; left: 0; top: 0; height: 100%; border-radius: 6px; transform-origin: left; }
.scn-bar .in { background: #d3dce3; }
.scn-bar .act { background: var(--blue); }
.scn-bar em { font-style: normal; font-size: 12px; color: var(--muted); text-align: right; font-variant-numeric: tabular-nums; }
.scn-bar strong { position: absolute; right: -8px; top: 100%; margin-top: 2px; font-weight: 500; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: #9a6b1f; background: #f7ecd9; padding: 3px 8px; border-radius: 20px; }
.scn-bar.is-gap { background: rgba(233,220,198,.28); margin-bottom: 14px; }
.scn--sell .scn-kpi { right: 4%; top: 60%; max-width: 220px; }

/* 03 · SERVICE */
.mphone {
  position: absolute; z-index: 1; left: 9%; top: 1%; height: 98%; aspect-ratio: 300 / 610;
  padding: 8px; border-radius: 40px;
  background: linear-gradient(145deg, #2a2d31, #0b0c0e 40%, #1b1d20);
  box-shadow: inset 0 0 0 1.5px #3a3e43, 0 50px 80px -40px rgba(24,45,64,.55);
}
.mphone__screen { position: relative; height: 100%; border-radius: 32px; overflow: hidden; background: #f5f6f8; padding: 34px 14px 14px; font-size: 11.5px; display: flex; flex-direction: column; gap: 9px; }
.mphone__top { display: flex; justify-content: space-between; align-items: baseline; }
.mphone__top b { font-weight: 600; font-size: 15px; letter-spacing: -.02em; }
.mphone__top span { font-size: 9px; letter-spacing: .2em; text-transform: uppercase; color: var(--title-gray); }
.mphone__hero { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 14px; background: linear-gradient(160deg, #2a2e33, #0c0d0f); color: #fff; }
.mphone__hero img { width: 42px; height: 54px; object-fit: contain; }
.mphone__hero b { display: block; font-family: var(--serif); font-weight: 400; font-size: 14px; }
.mphone__hero span { font-size: 10px; color: rgba(255,255,255,.55); }
.mphone__card { padding: 10px 12px; border-radius: 12px; background: #fff; border: 1px solid rgba(17,19,21,.05); }
.mphone__warranty p { display: flex; justify-content: space-between; margin-bottom: 8px; }
.mphone__warranty b { font-weight: 500; }
.mphone__warranty span { color: var(--muted); font-size: 10.5px; }
.mphone__warranty i { position: relative; display: block; height: 4px; border-radius: 3px; background: #e6ecf0; overflow: hidden; }
.mphone__warranty i b { position: absolute; inset: 0 30% 0 0; background: #3fa46f; transform-origin: left; }
.mphone__list p { display: flex; justify-content: space-between; gap: 8px; padding: 6px 0; border-top: 1px solid #f0f2f4; }
.mphone__list p:first-child { border-top: 0; }
.mphone__list em { font-style: normal; font-size: 9.5px; letter-spacing: .1em; color: var(--title-gray); }
.mphone__list em.ok { color: #3fa46f; }
.mphone__list .hl { margin: 0 -6px; padding: 6px; border-radius: 8px; }
.mphone__btn { margin-top: auto; display: block; padding: 11px; border-radius: 12px; background: var(--ink); color: #fff; text-align: center; font-size: 12px; }
.mphone__sheet {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
  padding: 10px 16px 18px; border-radius: 22px 22px 0 0;
  background: #fff; box-shadow: 0 -20px 40px -20px rgba(0,0,0,.3);
  display: grid; gap: 4px; transform: translateY(101%);
}
.mphone__grab { justify-self: center; width: 34px; height: 4px; border-radius: 3px; background: #dde3e8; margin-bottom: 8px; }
.mphone__sheet > b { font-family: var(--serif); font-weight: 400; font-size: 16px; }
.mphone__sheet > span { color: var(--muted); font-size: 11px; }
.mphone__slots { display: flex; gap: 6px; margin: 10px 0 8px; }
.mphone__slots span { flex: 1; padding: 8px 4px; border-radius: 10px; border: 1px solid var(--line); text-align: center; font-size: 10.5px; transition: background .3s, color .3s; }
.mphone__ok { display: flex; align-items: center; gap: 8px; font-size: 12px; color: #2f7a52; opacity: 0; }
.mphone__ok i { width: 18px; height: 18px; border-radius: 50%; display: grid; place-items: center; background: #3fa46f; color: #fff; font-style: normal; font-size: 10px; }
.scn-svc { right: 5%; top: 14%; width: 38%; padding: 18px 20px 16px; }
.scn-cols { display: flex; align-items: flex-end; gap: 8px; height: 110px; }
.scn-cols i { flex: 1; height: calc(var(--h) * 100%); border-radius: 5px 5px 2px 2px; background: linear-gradient(180deg, var(--blue-light), #c9d8e3); transform-origin: bottom; }
.scn-cols i:last-child { background: linear-gradient(180deg, var(--blue), var(--blue-light)); }
.scn--svc .scn-kpi { right: 8%; top: 56%; max-width: 230px; }

/* 04 · RESALE */
.scn-owners { position: absolute; z-index: 1; left: 6%; right: 4%; top: 7%; height: 38%; }
.scn-person { top: auto; bottom: 0; display: flex; align-items: center; gap: 12px; padding: 14px 18px 14px 14px; }
.scn-person b { display: block; font-weight: 500; font-size: 14px; }
.scn-person small { font-size: 11.5px; color: var(--muted); }
.scn-person--a { left: 0; }
.scn-person--b { right: 0; }
.scn-person--b .av { background: var(--ink); color: #fff; }
.scn-arc { position: absolute; left: 8%; right: 8%; top: 0; width: 84%; height: 64%; overflow: visible; }
.scn-arc path { fill: none; stroke: var(--blue-light); stroke-width: 1.5; stroke-dasharray: .012 .012; vector-effect: non-scaling-stroke; }
.scn-token {
  position: absolute; z-index: 3; left: 0; top: 0; width: 132px; padding: 12px 14px; border-radius: 14px;
  background: linear-gradient(160deg, #2a2e33, #0c0d0f); color: #fff;
  box-shadow: 0 24px 40px -18px rgba(17,19,21,.6);
  will-change: transform;
}
.scn-token b { display: block; font-size: 9px; letter-spacing: .24em; text-transform: uppercase; font-weight: 500; color: rgba(255,255,255,.6); }
.scn-token span { font-size: 16px; letter-spacing: .02em; }
.scn-hist { left: 8%; top: 52%; width: 52%; padding: 18px 20px 12px; }
.scn-hist p { display: grid; grid-template-columns: 48px 1fr; gap: 8px; padding: 9px 0; border-top: 1px solid var(--line); }
.scn-hist p span { color: var(--sub); font-variant-numeric: tabular-nums; }
.scn-hist p.is-new { color: var(--blue-deep); }
.scn-msg {
  position: absolute; z-index: 2; right: 5%; top: 60%; width: 34%;
  padding: 16px 18px; border-radius: 18px 18px 4px 18px;
  background: var(--ink); color: rgba(255,255,255,.86); font-size: 13px; line-height: 1.5;
  box-shadow: 0 30px 50px -26px rgba(17,19,21,.6);
}
.scn-msg b { display: block; margin-bottom: 4px; font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--sub-dark); font-weight: 500; }

/* ==========================================================================
   Sectors · accordion
   ========================================================================== */
.sectors { padding: 18vh var(--pad) 16vh; background: var(--paper); }
.sectors__head { margin-bottom: 56px; }
.sectors__head .eyebrow { margin-bottom: 26px; }
.sectors__head h2 { font-size: clamp(2.6rem, 5vw, 5.6rem); line-height: 1.02; letter-spacing: -.045em; }
.sect { display: flex; gap: 12px; height: min(560px, 68vh); }
.sect__p {
  position: relative; flex: 1 1 0; min-width: 0; overflow: hidden; isolation: isolate;
  display: flex; flex-direction: column;
  padding: 30px 30px 32px; border-radius: 22px; cursor: default; outline-offset: 3px;
  transition: flex-grow .9s var(--ease-out);
}
.sect__p:nth-child(1) { background: linear-gradient(165deg, #e6eaee 0%, #cdd6dd 100%); }
.sect__p:nth-child(2) { background: linear-gradient(165deg, #f4eee4 0%, #e3d5bb 100%); }
.sect__p:nth-child(3) { background: linear-gradient(165deg, #efebe6 0%, #d9cfc4 100%); }
.sect__p:nth-child(4) { background: linear-gradient(165deg, #e9f0f5 0%, #c9d9e5 100%); }
.sect__p.is-open { flex-grow: 3.1; }
.sect__p::before {
  content: attr(data-n); position: absolute; z-index: -1; right: -.04em; top: -.16em;
  font-family: var(--serif); font-size: clamp(9rem, 17vw, 17rem); line-height: 1; letter-spacing: -.05em;
  color: rgba(255,255,255,.34); transition: transform 1.2s var(--ease-out), color .8s;
}
.sect__p.is-open::before { color: rgba(255,255,255,.5); transform: translateX(-4%); }
.sect__p h3 { position: relative; z-index: 1; margin-top: auto; font-size: clamp(1.7rem, 2.5vw, 2.9rem); line-height: 1.06; letter-spacing: -.03em; }
.sect__body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .9s var(--ease-out); }
.sect__body > div { min-height: 0; overflow: hidden; width: min(480px, 58vw); opacity: 0; transform: translateY(14px); transition: opacity .4s, transform .7s var(--ease-out); }
.sect__p.is-open .sect__body { grid-template-rows: 1fr; }
.sect__p.is-open .sect__body > div { opacity: 1; transform: none; transition-delay: .22s; }
.sect__body p { margin: 14px 0 20px; font-size: 15.5px; line-height: 1.6; color: #3d4448; max-width: 420px; }
.sect__pass { display: grid; gap: 0; padding: 14px 18px 8px; border-radius: 16px; background: rgba(255,255,255,.72); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); max-width: 360px; }
.sect__pass small { font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.sect__pass span { display: flex; justify-content: space-between; padding: 8px 0; border-top: 1px solid rgba(17,19,21,.07); font-size: 13.5px; }
.sect__pass span::after { content: "✓"; color: var(--sub); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1180px) {
  .ucx__ch { column-gap: 4vw; }
  .scn-owner { width: 54%; left: 42%; }
}

/* chapters stop pinning: they read top to bottom */
@media (max-width: 900px), (max-height: 699px) {
  .ucx__pin { height: auto; padding-top: 12vh; padding-bottom: 8vh; display: block; }
  .ucx__rail { display: none; }
  .ucx__ch { position: relative; inset: auto; display: grid; grid-template-columns: 1fr; row-gap: 40px; pointer-events: auto; padding: 8vh 0; border-top: 1px solid var(--line); }
  .ucx__ch:first-child { border-top: 0; padding-top: 0; }
  .ucx__acts li::before { background: var(--sub); }
}
@media (min-width: 901px) and (max-height: 699px) {
  .ucx__ch { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); }
  .ucx__scene { height: 560px; }
}

@media (max-width: 900px) {
  .phero { min-height: 0; padding-top: calc(var(--nav-h) + 6vh); row-gap: 40px; }
  .phero__head { grid-template-columns: 1fr; row-gap: 22px; }
  .phero__lead { justify-self: start; padding-bottom: 0; }
  .uindex a { grid-template-columns: 40px 1fr 22px; gap: 14px; padding: 18px 6px; }
  .uindex__line { grid-column: 2; grid-row: 2; font-size: 13.5px; }
  .uindex .arrow { grid-column: 3; grid-row: 1 / span 2; }

  .ucx__foot { flex-direction: column; align-items: flex-start; }

  /* scenes become a vertical stack of cards */
  .ucx__scene { height: auto; display: grid; gap: 14px; padding: 22px 18px; }
  .scn::before { inset: 0; }
  .scard, .scn-kpi, .scn-msg { position: relative; left: auto !important; right: auto !important; top: auto !important; bottom: auto !important; width: auto !important; }
  .scn-link, .scn-note { display: none; }
  .scn-kpi { justify-self: start; }
  .scn-owner { grid-template-columns: 48px 1fr; }
  .scn-owner__av { width: 48px; height: 48px; }
  .scn-flow { flex-wrap: wrap; row-gap: 12px; }
  .scn-flow__l { flex: 1 1 30%; }
  .mphone { position: relative; left: auto; top: auto; justify-self: center; height: 520px; }
  .scn-owners { position: relative; left: auto; right: auto; top: auto; height: 230px; }
  .scn-person { position: absolute; bottom: 0; }
  .scn-person--a { left: 0; } .scn-person--b { right: 0 !important; left: auto; }
  .scn-person small { display: none; }
  .scn-msg { border-radius: 18px 18px 4px 18px; }

  .sectors { padding: 12vh var(--pad); }
  .sect { flex-direction: column; height: auto; }
  .sect__p { flex: none; min-height: 0; gap: 18px; }
  .sect__p h3 { margin-top: 30px; }
  .sect__body { grid-template-rows: 1fr; }
  .sect__body > div { width: auto; opacity: 1; transform: none; }
  .sect__p::before { font-size: 8rem; }
}

/* ==========================================================================
   Intégrations · hero + live data hub (pinned)
   ========================================================================== */
.ihub { position: relative; background: linear-gradient(180deg, var(--paper) 0%, #eef3f7 100%); }
.ihub__pin {
  position: relative; height: 100vh; height: 100svh;
  padding: calc(var(--nav-h) + 3vh) var(--pad) 5vh;
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); column-gap: 4vw; align-items: center;
  overflow: hidden;
}
.ihub__title { font-size: clamp(2.8rem, 4.7vw, 5.6rem); margin: 22px 0 24px; }
.ihub__lead { max-width: 450px; font-size: clamp(1rem, 1.2vw, 1.15rem); line-height: 1.7; color: var(--muted); }
.ihub__events { list-style: none; margin: 30px 0 0; padding: 0; max-width: 460px; counter-reset: ev; }
.ihub__events li { border-top: 1px solid #d6dee4; }
.ihub__events li:last-child { border-bottom: 1px solid #d6dee4; }
.ihub__events button { width: 100%; display: flex; align-items: baseline; gap: 14px; padding: 11px 0; text-align: left; font-size: 15px; color: var(--muted); transition: color .4s; }
.ihub__events button span { font-size: 11px; letter-spacing: .18em; color: var(--sub); }
.ihub__events button::after { content: "✓"; margin-left: auto; font-size: 13px; color: var(--sub); opacity: 0; transition: opacity .4s; }
.ihub__events li.is-done button::after { opacity: 1; }
.ihub__events li.is-active button { color: var(--ink); }
.ihub__events p { max-height: 0; overflow: hidden; opacity: 0; padding-left: 36px; font-size: 14px; line-height: 1.55; color: var(--muted); transition: max-height .6s var(--ease-out), opacity .4s, padding .6s var(--ease-out); }
.ihub__events li.is-active p { max-height: 90px; opacity: 1; padding-bottom: 14px; }
.ihub__scroll { display: flex; align-items: center; gap: 12px; margin-top: 22px; font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--title-gray); }
.ihub__scroll i { position: relative; width: 1px; height: 30px; background: #d6dee4; overflow: hidden; }
.ihub__scroll i::after { content: ""; position: absolute; left: 0; top: -30px; width: 1px; height: 30px; background: var(--ink); animation: drip 2s var(--ease-io) infinite; }
@keyframes drip { to { transform: translateY(60px); } }

.hub { position: relative; height: min(640px, calc(100svh - var(--nav-h) - 12vh)); }
.hub::before {
  content: ""; position: absolute; inset: 0; border-radius: 30px;
  background:
    radial-gradient(circle, rgba(62,109,142,.10) 1px, transparent 1.4px) 0 0 / 22px 22px,
    linear-gradient(160deg, #e6edf2, #f5f7f9);
}
.hub__wires { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; overflow: visible; }
.hub__wires path { fill: none; stroke: #c3cfd8; stroke-width: 1.4; stroke-dasharray: 3 6; }
.hub__wires path.is-hot { stroke: var(--blue); stroke-dasharray: none; stroke-width: 1.8; }
.hub__node {
  position: absolute; z-index: 1; width: 28%; max-width: 230px; padding: 14px 16px 15px;
  border-radius: 16px; background: #fff; border: 1px solid rgba(17,19,21,.06);
  box-shadow: 0 30px 50px -32px rgba(24,45,64,.35), 0 8px 16px -12px rgba(24,45,64,.18);
}
.hub__node small { display: block; margin-bottom: 4px; font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--sub); font-weight: 500; }
.hub__node b { display: block; font-weight: 400; font-size: 14px; line-height: 1.35; }
.hub__node[data-node="erp"] { left: 4%; top: 6%; }
.hub__node[data-node="crm"] { right: 4%; top: 6%; }
.hub__node[data-node="shop"] { left: 4%; bottom: 9%; }
.hub__node[data-node="pass"] { right: 4%; bottom: 9%; }
.hub__core {
  position: absolute; z-index: 2; left: 50%; top: 48%; width: 31%; max-width: 250px; transform: translate(-50%, -50%);
  padding: 20px 20px 14px; border-radius: 22px; color: #fff;
  background: linear-gradient(160deg, #262a2f 0%, #121417 55%, #0b0c0e 100%);
  box-shadow: 0 50px 80px -34px rgba(17,19,21,.65), inset 0 0 0 1px rgba(255,255,255,.07);
}
.hub__brand .logo { height: 13px; color: #fff; margin-bottom: 18px; }
.hub__id small, .hub__h { display: block; font-size: 9.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--sub-dark); }
.hub__id b { display: block; margin: 2px 0 0; font-weight: 400; font-size: 24px; letter-spacing: .02em; }
.hub__id span { font-family: var(--serif); font-size: 14px; color: rgba(255,255,255,.6); }
.hub__h { margin: 16px 0 6px; }
.hub__log { list-style: none; margin: 0; padding: 0; }
.hub__log li { display: flex; justify-content: space-between; padding: 6px 0; border-top: 1px solid rgba(255,255,255,.08); font-size: 12.5px; color: rgba(255,255,255,.26); transition: color .4s; }
.hub__log li::after { content: "✓"; color: var(--blue-light); opacity: 0; transition: opacity .4s; }
.hub__log li.is-done { color: rgba(255,255,255,.92); }
.hub__log li.is-done::after { opacity: 1; }
.hub__pkt {
  position: absolute; z-index: 3; left: 0; top: 0; opacity: 0;
  display: flex; align-items: center; gap: 8px; padding: 7px 13px 7px 10px; border-radius: 30px;
  background: #fff; border: 1px solid rgba(62,109,142,.22); white-space: nowrap;
  box-shadow: 0 14px 24px -14px rgba(24,45,64,.45); font-size: 12px; color: var(--ink);
  will-change: transform, opacity; pointer-events: none;
}
.hub__pkt i { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 4px rgba(62,109,142,.14); }
.hub__note { position: absolute; left: 4%; right: 4%; bottom: -30px; font-size: 11px; line-height: 1.5; color: var(--title-gray); text-align: center; }

/* ==========================================================================
   Intégrations · three families of connections
   ========================================================================== */
.links { padding: 18vh var(--pad) 14vh; background: var(--paper); }
.links__head { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); column-gap: 6vw; align-items: end; margin-bottom: 60px; }
.links__head .eyebrow { grid-column: 1 / -1; margin-bottom: 26px; }
.links__head h2 { font-size: clamp(2.6rem, 5vw, 5.6rem); line-height: 1.02; letter-spacing: -.045em; }
.links__lead { justify-self: end; max-width: 430px; font-size: clamp(1rem, 1.2vw, 1.15rem); line-height: 1.7; color: var(--muted); }
.links__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.lcard { display: flex; flex-direction: column; padding: 30px 28px 28px; border-radius: 24px; background: #fff; border: 1px solid var(--line); transition: box-shadow .6s var(--ease-out), transform .6s var(--ease-out); }
.lcard:hover { transform: translateY(-4px); box-shadow: 0 40px 70px -40px rgba(24,45,64,.3); }
.lcard__n { margin-bottom: 44px; font-size: 12px; letter-spacing: .2em; color: var(--sub); }
.lcard h3 { margin-bottom: 12px; font-size: clamp(1.5rem, 2vw, 2.05rem); line-height: 1.1; letter-spacing: -.025em; }
.lcard__txt { margin-bottom: 30px; font-size: 15px; line-height: 1.6; color: var(--muted); }
.map { position: relative; margin-top: auto; padding: 16px 16px 18px; border-radius: 16px; background: linear-gradient(160deg, #edf2f6, #f6f8fa); }
.map__h { display: flex; justify-content: space-between; margin-bottom: 12px; font-size: 9.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--title-gray); }
.map__rows { position: relative; z-index: 1; display: grid; gap: 9px; }
.map__rows p { display: flex; justify-content: space-between; gap: 40px; }
.map__rows span { padding: 7px 11px; border-radius: 9px; font-size: 12.5px; line-height: 1.3; background: #fff; border: 1px solid rgba(17,19,21,.07); }
.map__rows span + span { background: var(--ink); border-color: var(--ink); color: #fff; }
.map__wires { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; overflow: visible; }
.map__wires .base { fill: none; stroke: var(--blue-light); stroke-width: 1.2; stroke-dasharray: 1; stroke-dashoffset: 1; }
.map__wires .flow { fill: none; stroke: var(--blue); stroke-width: 3.2; stroke-linecap: round; stroke-dasharray: .001 .2; opacity: 0; }
.map.is-on .map__wires .flow { opacity: 1; animation: mapflow 2.2s linear infinite; }
@keyframes mapflow { to { stroke-dashoffset: -.201; } }

/* ==========================================================================
   Intégrations · scoping checklist
   ========================================================================== */
.scope { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); column-gap: 6vw; padding: 14vh var(--pad) 16vh; background: var(--paper); }
.scope__side { position: sticky; top: calc(var(--nav-h) + 8vh); align-self: start; }
.scope__side .eyebrow { margin-bottom: 26px; }
.scope__side h2 { font-size: clamp(2.6rem, 5vw, 5.4rem); line-height: 1.02; letter-spacing: -.045em; margin-bottom: 26px; }
.scope__lead { max-width: 420px; margin-bottom: 34px; font-size: clamp(1rem, 1.2vw, 1.15rem); line-height: 1.7; color: var(--muted); }
.scope__count { margin-top: 34px; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--title-gray); }
.scope__count b { font-family: var(--serif); font-weight: 400; font-size: 34px; letter-spacing: 0; color: var(--ink); margin-right: 2px; }
.scope__list { list-style: none; margin: 0; padding: 0; }
.spt { display: grid; grid-template-columns: 64px minmax(0, 1fr) 54px; column-gap: 24px; align-items: center; padding: 7vh 0; border-top: 1px solid var(--line); color: #b3bcc3; transition: color .6s; }
.spt:last-child { border-bottom: 1px solid var(--line); }
.spt.is-on { color: var(--ink); }
.spt__n { font-family: var(--serif); font-size: 26px; }
.spt h3 { margin-bottom: 10px; font-size: clamp(2rem, 3.4vw, 3.5rem); line-height: 1.05; letter-spacing: -.035em; }
.spt p { max-width: 520px; font-size: 16px; line-height: 1.6; transition: color .6s; }
.spt.is-on p { color: var(--muted); }
.spt__check { width: 54px; height: 54px; border-radius: 50%; border: 1px solid currentColor; display: grid; place-items: center; transition: background .5s, border-color .5s; }
.spt__check svg { width: 22px; height: 22px; }
.spt__check path { fill: none; stroke: #fff; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 1; stroke-dashoffset: 1; transition: stroke-dashoffset .6s .15s var(--ease-out); }
.spt.is-on .spt__check { background: var(--ink); border-color: var(--ink); }
.spt.is-on .spt__check path { stroke-dashoffset: 0; }

/* ==========================================================================
   Intégrations · governance
   ========================================================================== */
.gov { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); column-gap: 6vw; align-items: center; padding: 16vh var(--pad); background: linear-gradient(180deg, var(--paper), #e9eff4); }
.gov__copy .eyebrow { margin-bottom: 26px; }
.gov__copy h2 { font-size: clamp(2.4rem, 4.3vw, 4.8rem); line-height: 1.04; letter-spacing: -.04em; margin-bottom: 26px; }
.gov__lead { max-width: 470px; margin-bottom: 34px; font-size: clamp(1rem, 1.2vw, 1.15rem); line-height: 1.7; color: var(--muted); }
.gov__tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.gtile { position: relative; overflow: hidden; isolation: isolate; aspect-ratio: 1.3; padding: 26px; border-radius: 22px; background: #fff; border: 1px solid var(--line); display: flex; flex-direction: column; justify-content: space-between; }
.gtile::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(280px circle at var(--x, 50%) var(--y, 50%), rgba(151,184,207,.38), transparent 62%); opacity: 0; transition: opacity .4s; }
.gtile:hover::before { opacity: 1; }
.gtile span { font-size: 12px; letter-spacing: .2em; color: var(--sub); }
.gtile b { display: block; margin-bottom: 10px; font-family: var(--serif); font-weight: 400; font-size: clamp(1.8rem, 2.6vw, 2.9rem); line-height: 1; letter-spacing: -.03em; }
.gtile p { max-width: 260px; font-size: 14px; line-height: 1.5; color: var(--muted); }

@media (max-width: 1180px) {
  .links__grid { grid-template-columns: 1fr; max-width: 640px; }
  .hub__node b { font-size: 13px; }
}
@media (max-width: 900px), (max-height: 699px) {
  .ihub__pin { height: auto; grid-template-columns: 1fr; row-gap: 56px; padding-top: calc(var(--nav-h) + 6vh); padding-bottom: 12vh; }
  .ihub__scroll { display: none; }
  .hub { height: 560px; }
}
@media (max-width: 900px) {
  .hub { height: 660px; }
  .hub__node { width: 44%; padding: 11px 12px; border-radius: 13px; }
  .hub__node[data-node="erp"], .hub__node[data-node="crm"] { top: 2.5%; }
  .hub__node[data-node="shop"], .hub__node[data-node="pass"] { bottom: 2.5%; }
  .hub__core { top: 50%; }
  .hub__brand .logo { margin-bottom: 12px; }
  .hub__node b { font-size: 12px; }
  .hub__node[data-node="erp"], .hub__node[data-node="shop"] { left: 3%; }
  .hub__node[data-node="crm"], .hub__node[data-node="pass"] { right: 3%; }
  .hub__core { width: 52%; padding: 16px 16px 10px; }
  .hub__id b { font-size: 20px; }
  .hub__log li { font-size: 11.5px; padding: 5px 0; }
  .hub__pkt { font-size: 11px; padding: 5px 10px 5px 8px; }
  .hub__note { bottom: -44px; }
  .links__head, .scope, .gov { grid-template-columns: 1fr; }
  .links__lead { justify-self: start; margin-top: 22px; }
  .scope__side { position: relative; top: auto; margin-bottom: 30px; }
  .spt { grid-template-columns: 40px 1fr 44px; column-gap: 14px; padding: 5vh 0; }
  .spt__check { width: 44px; height: 44px; }
  .gov__tiles { margin-top: 44px; }
  .gtile { aspect-ratio: auto; min-height: 190px; padding: 20px 18px; }
  .gtile b { font-size: clamp(1.3rem, 5.6vw, 1.9rem); overflow-wrap: anywhere; }
  .gtile p { font-size: 13px; }
}

/* hub acknowledgements */
.hub__node, .hub__core { transition: box-shadow .45s var(--ease-out); }
.hub__node.is-ping { box-shadow: 0 0 0 6px rgba(151,184,207,.45), 0 30px 50px -32px rgba(24,45,64,.35); }
.hub__core.is-ping { box-shadow: 0 0 0 7px rgba(151,184,207,.35), 0 50px 80px -34px rgba(17,19,21,.65), inset 0 0 0 1px rgba(255,255,255,.07); }

/* ==========================================================================
   Passeport numérique · the services of the passport
   ========================================================================== */
.page--passport .hero { background: var(--paper); }
.psvc { padding: 18vh var(--pad) 14vh; background: var(--paper); }
.psvc__head .eyebrow { margin-bottom: 26px; }
.psvc__head h2 { font-size: clamp(2.6rem, 5vw, 5.6rem); line-height: 1.02; letter-spacing: -.045em; }
.psvc__track { position: relative; height: 1px; margin: 64px 0 0; background: var(--line); }
.psvc__track i { position: absolute; inset: 0; background: var(--ink); transform-origin: left; transform: scaleX(0); }
.psvc__track b { position: absolute; left: 0; top: -4px; width: 9px; height: 9px; margin-left: -4px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 6px rgba(62,109,142,.14); }
.psvc__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); column-gap: 28px; }
.svc { position: relative; display: flex; flex-direction: column; min-height: 440px; padding-top: 34px; }
.svc::before { content: ""; position: absolute; left: 0; top: -4px; width: 9px; height: 9px; border-radius: 50%; background: var(--paper); border: 1px solid #b9c6cf; transition: background .5s, border-color .5s; }
.svc.is-on::before { background: var(--ink); border-color: var(--ink); }
.svc__cat { display: flex; gap: 12px; align-items: baseline; margin-bottom: 26px; font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--sub); }
.svc__cat span { font-family: var(--serif); font-size: 15px; letter-spacing: 0; color: var(--ink); }
.svc__verb { margin-bottom: 18px; font-size: clamp(2.4rem, 3.6vw, 4rem); line-height: 1; letter-spacing: -.04em; color: #c2cbd2; transition: color .8s var(--ease-out); }
.svc.is-on .svc__verb { color: var(--ink); }
.svc__txt { max-width: 300px; font-size: 15.5px; line-height: 1.65; color: var(--muted); }
.svc__value { margin-top: auto; padding: 18px 20px 20px; background: #eef3f7; transition: background .8s var(--ease-out), color .8s; }
.svc__value small { display: block; margin-bottom: 6px; font-size: 10px; letter-spacing: .24em; text-transform: uppercase; color: var(--sub); transition: color .8s; }
.svc__value p { font-size: 15px; line-height: 1.5; }
.svc.is-on .svc__value { background: var(--ink); color: #fff; }
.svc.is-on .svc__value small { color: var(--sub-dark); }

/* ==========================================================================
   Passeport numérique · from activation to passport (one phone, four apps)
   ========================================================================== */
.ppath { position: relative; background: linear-gradient(180deg, var(--paper) 0%, #eaf0f5 55%, #eef3f7 100%); }
.ppath__pin {
  position: relative; height: 100vh; height: 100svh;
  padding: calc(var(--nav-h) + 2vh) var(--pad) 4vh;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .9fr); column-gap: 6vw; align-items: center;
  overflow: hidden;
}
.ppath__copy .eyebrow { margin-bottom: 22px; }
.ppath__title { font-size: clamp(2.3rem, 4vw, 4.4rem); line-height: 1.02; letter-spacing: -.04em; margin-bottom: 18px; }
.ppath__lead { max-width: 480px; margin-bottom: 26px; font-size: clamp(1rem, 1.15vw, 1.1rem); line-height: 1.7; color: var(--muted); }
.ppath__steps { list-style: none; margin: 0 0 22px; padding: 0; max-width: 520px; }
.ppath__steps li { border-top: 1px solid #d6dee4; }
.ppath__steps li:last-child { border-bottom: 1px solid #d6dee4; }
.ppath__steps button { width: 100%; display: grid; grid-template-columns: 34px 1fr; column-gap: 12px; align-items: baseline; padding: 12px 0; text-align: left; color: var(--muted); transition: color .4s; }
.ppath__steps button span { grid-row: span 2; font-size: 11px; letter-spacing: .18em; color: var(--sub); }
.ppath__steps button small { font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--title-gray); }
.ppath__steps button b { font-family: var(--serif); font-weight: 400; font-size: clamp(1.2rem, 1.5vw, 1.45rem); letter-spacing: -.02em; }
.ppath__steps button b em { color: var(--title-gray); }
.ppath__steps li.is-active button { color: var(--ink); }
.ppath__steps p { max-height: 0; overflow: hidden; opacity: 0; padding-left: 46px; font-size: 14px; line-height: 1.6; color: var(--muted); transition: max-height .6s var(--ease-out), opacity .4s, padding .6s var(--ease-out); }
.ppath__steps li.is-active p { max-height: 110px; opacity: 1; padding-bottom: 14px; }
.ppath__chips { display: flex; flex-wrap: wrap; gap: 10px; }
.ppath__chips span { padding: 9px 14px; border: 1px solid #cdd8e0; background: rgba(255,255,255,.6); font-size: 12.5px; color: var(--sub); }

.ppath__stage { display: grid; place-items: center; }
.pp-phone {
  position: relative; height: min(720px, calc(100svh - 150px)); aspect-ratio: 393 / 852;
  padding: 11px; border-radius: 54px;
  background: linear-gradient(145deg, #2a2d31, #0b0c0e 40%, #1b1d20);
  box-shadow: inset 0 0 0 1.5px #3a3e43, inset 0 0 0 3px #0d0e10, 0 70px 100px -40px rgba(24,45,64,.5), 0 30px 40px -30px rgba(24,45,64,.45);
}
.pp-phone__island { position: absolute; z-index: 20; top: 22px; left: 50%; width: 30%; height: 27px; border-radius: 20px; background: #050505; transform: translateX(-50%); }
.pp-phone__screen { position: relative; height: 100%; border-radius: 44px; overflow: hidden; background: #f4f5f7; color: var(--ink); font-size: 12.5px; }
.pp-phone__screen .sbar { z-index: 15; }
.pp-phone__screen .home-ind { z-index: 15; }
.pps { position: absolute; inset: 0; padding-top: 52px; background: #f4f5f7; box-shadow: -24px 0 40px -24px rgba(0,0,0,.28); will-change: transform; }
.pps__url { display: flex; align-items: center; justify-content: center; gap: 6px; margin: 2px 14px 12px; padding: 8px 12px; border-radius: 12px; background: rgba(17,19,21,.06); font-size: 11.5px; color: var(--muted); }
.pps__url i { width: 8px; height: 9px; border: 1.3px solid currentColor; border-radius: 2px; position: relative; }
.pps__url i::before { content: ""; position: absolute; left: 1px; right: 1px; top: -5px; height: 5px; border: 1.3px solid currentColor; border-bottom: 0; border-radius: 4px 4px 0 0; }
.pps__body { padding: 6px 18px; }
.pps__brand { font-weight: 600; font-size: 22px; letter-spacing: -.035em; line-height: 1; }
.pps__kick { display: block; margin-top: 4px; font-size: 9.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--sub); }
.pps h4 { margin: 22px 0 16px; font-family: var(--serif); font-weight: 400; font-size: 22px; line-height: 1.15; letter-spacing: -.02em; }
.pps label { display: block; margin: 12px 0 6px; font-size: 9.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.pps__in { display: flex; align-items: center; min-height: 42px; padding: 0 12px; background: #fff; border: 1px solid #dde3e8; font-size: 13px; }
.pps__in i { width: 1px; height: 16px; margin-left: 1px; background: var(--blue); animation: caretBlink 1s steps(1) infinite; }
@keyframes caretBlink { 50% { opacity: 0; } }
.pps__btn { display: block; margin-top: 20px; padding: 14px; background: var(--ink); color: #fff; text-align: center; font-size: 13px; }
.pps__mailbar { display: flex; justify-content: space-between; align-items: center; padding: 4px 16px 10px; font-size: 13px; color: var(--blue); }
.pps__mailbar b { font-weight: 600; color: var(--ink); }
.pps__mailcard { margin: 4px 12px; padding: 20px 18px; border-radius: 16px; background: #fff; border: 1px solid rgba(17,19,21,.06); box-shadow: 0 20px 40px -30px rgba(24,45,64,.4); }
.pps__ok { display: flex; align-items: center; gap: 8px; margin-top: 18px; font-size: 9.5px; letter-spacing: .2em; text-transform: uppercase; color: #2f7a52; }
.pps__ok i { width: 18px; height: 18px; border-radius: 50%; display: grid; place-items: center; background: #3fa46f; color: #fff; font-style: normal; font-size: 10px; letter-spacing: 0; }
.pps__mailcard h4 { margin: 10px 0 8px; }
.pps__txt { font-size: 12.5px; line-height: 1.55; color: var(--muted); }
.pps__ref { display: flex; justify-content: space-between; margin: 14px 0; padding: 10px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); font-size: 12px; }
.pps__ref span { color: var(--muted); }
.pps__wbtn { display: block; margin-top: 8px; padding: 11px; border: 1px solid var(--ink); border-radius: 10px; text-align: center; font-size: 12.5px; }
.pps__wbtn--apple { background: #000; border-color: #000; color: #fff; }
.pps__wbar { display: flex; justify-content: space-between; align-items: center; padding: 6px 18px 14px; }
.pps__wbar b { font-size: 26px; font-weight: 700; letter-spacing: -.02em; }
.pps__wbar span { width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; background: rgba(17,19,21,.07); font-size: 18px; }
.pps__pass { position: relative; z-index: 2; margin: 0 12px; padding: 16px 16px 14px; border-radius: 16px; color: #fff; background: linear-gradient(160deg, #2a2e33 0%, #16181b 45%, #0c0d0f 100%); box-shadow: 0 30px 40px -24px rgba(14,28,40,.6); display: grid; gap: 12px; }
.pps__pass p { display: flex; justify-content: space-between; align-items: flex-start; }
.pps__pass small { display: block; font-size: 8px; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.pps__pass b { display: block; font-weight: 400; font-size: 13px; margin-top: 2px; }
.pps__passtop > span:first-child b { font-weight: 600; font-size: 19px; letter-spacing: -.03em; margin: 0 0 2px; }
.pps__pass .r { text-align: right; }
.pps__passmodel b { font-family: var(--serif); font-size: 16px; }
.pps__passmodel img { height: 64px; width: auto; margin: -6px 0; filter: drop-shadow(0 8px 10px rgba(0,0,0,.5)); }
.pps__qr { justify-self: center; width: 84px; height: 84px; padding: 6px; background: #fff; border-radius: 8px; image-rendering: pixelated; }
.pps__others { position: absolute; left: 12px; right: 12px; bottom: 26px; height: 60px; }
.pps__others i { position: absolute; left: 0; right: 0; height: 60px; border-radius: 16px 16px 0 0; }
.pps__others i:nth-child(1) { bottom: 16px; background: linear-gradient(160deg, #c7d7e4, #97b8cf); }
.pps__others i:nth-child(2) { bottom: 0; background: linear-gradient(160deg, #efe5d4, #d8c7a6); box-shadow: 0 -6px 14px -8px rgba(0,0,0,.25); }
.pps__hero { display: flex; align-items: center; gap: 14px; padding: 14px; border-radius: 16px; color: #fff; background: linear-gradient(160deg, #2a2e33, #0c0d0f); }
.pps__hero img { width: 54px; height: 70px; object-fit: contain; }
.pps__hero small { display: block; font-size: 9px; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.55); }
.pps__hero b { display: block; font-family: var(--serif); font-weight: 400; font-size: 17px; }
.pps__hero span { font-size: 11px; color: rgba(255,255,255,.6); }
.pps__card { margin-top: 10px; padding: 12px 14px; border-radius: 14px; background: #fff; border: 1px solid rgba(17,19,21,.05); }
.pps__warranty p { display: flex; justify-content: space-between; margin-bottom: 8px; }
.pps__warranty b { font-weight: 500; }
.pps__warranty span { font-size: 11px; color: var(--muted); }
.pps__warranty i { position: relative; display: block; height: 4px; border-radius: 3px; background: #e6ecf0; overflow: hidden; }
.pps__warranty i b { position: absolute; inset: 0 30% 0 0; background: #3fa46f; transform-origin: left; }
.pps__services p { display: flex; justify-content: space-between; padding: 9px 0; border-top: 1px solid #f0f2f4; }
.pps__services p:first-child { border-top: 0; }
.pps__services em { font-style: normal; color: var(--title-gray); }
.pp-tap { position: absolute; z-index: 14; left: 0; top: 0; width: 38px; height: 38px; margin: -19px 0 0 -19px; border-radius: 50%; background: rgba(151,184,207,.35); border: 2px solid rgba(62,109,142,.55); opacity: 0; pointer-events: none; }

@media (max-width: 1180px) {
  .psvc__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 40px; }
  .psvc__track { display: none; }
  .svc { min-height: 380px; border-top: 1px solid var(--line); }
}
@media (max-width: 900px), (max-height: 699px) {
  .ppath__pin { height: auto; grid-template-columns: 1fr; row-gap: 50px; padding-top: 12vh; padding-bottom: 12vh; }
  .pp-phone { height: min(640px, 150vw); }
}
@media (max-width: 900px) {
  .psvc { padding: 12vh var(--pad); }
  .psvc__grid { grid-template-columns: 1fr; }
  .svc { min-height: 0; gap: 0; }
  .svc__value { margin-top: 24px; }
}
