/* ==========================================================================
   Bravico Pilotage — Product depth page "La substance"
   The convince page: what it is, how it works, what you get, why trust it.
   Sibling of the homepage — same tokens, same chrome. Editorial, airy,
   human. Mobile-first. Self-contained.
   ========================================================================== */

:root {
  --sand: #f6efe3;
  --sand-2: #efe6d4;
  --ink: #182b45;
  --ink-soft: #33475f;
  --muted: #6d7787;
  --terra: #c75c3a;
  --terra-deep: #a84a2e;
  --wa: #21b358;
  --white: #fffdf9;
  --line: rgba(24, 43, 69, 0.13);
  --font: "Montserrat", "Segoe UI", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 64px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body.pilotage {
  margin: 0;
  font-family: var(--font);
  background: var(--sand);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
h1, h2, h3, p, ul, ol, figure { margin: 0; padding: 0; }
h1, h2, h3 { text-wrap: balance; }
[id] { scroll-margin-top: calc(var(--nav-h) + 12px); }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
em { font-style: normal; }

:focus-visible { outline: 3px solid var(--terra); outline-offset: 3px; }
::selection { background: var(--terra); color: var(--sand); }

.scroll-progress {
  position: fixed; inset: 0 auto auto 0; z-index: 220;
  width: var(--scroll, 0%); height: 2.5px;
  background: var(--terra);
  pointer-events: none;
}

.skip {
  position: absolute; left: 12px; top: 10px; z-index: 300;
  transform: translateY(-200%);
  background: var(--ink); color: var(--sand);
  padding: 10px 16px; border-radius: 10px; font-weight: 700;
}
.skip:focus { transform: none; }

/* ---- shared bits ---- */
.kicker {
  color: var(--terra);
  font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
}
.kicker--sand { color: #e0b489; }

.btn {
  --mx: 0px; --my: 0px;
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 14px 28px;
  border-radius: 999px; font-weight: 700; font-size: 0.98rem;
  transform: translate3d(var(--mx), var(--my), 0);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease), scale 0.15s var(--ease);
}
.btn:hover { transform: translate3d(var(--mx), calc(var(--my) - 2px), 0); }
.btn:active { scale: 0.97; }
.btn--terra {
  background: var(--terra); color: var(--white);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 14px 30px -12px rgba(199, 92, 58, 0.65);
}
.btn--terra:hover { background: var(--terra-deep); }
.btn--line { border: 1.5px solid var(--line); color: var(--ink); }
.btn--line:hover { border-color: var(--ink); background: rgba(255, 253, 249, 0.6); }
.btn--ink { background: var(--ink); color: var(--sand); min-height: 44px; padding: 10px 20px; font-size: 0.9rem; }
.btn--ink:hover { background: #22385a; }
.btn--sand { background: var(--sand); color: var(--terra-deep); box-shadow: 0 16px 36px -14px rgba(0, 0, 0, 0.35); }
.btn--ghost { border: 1.5px solid rgba(246, 239, 227, 0.55); color: var(--white); }
.btn--ghost:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.12); }

/* ==========================================================================
   NAV
   ========================================================================== */
.nav {
  position: fixed; inset: 0 0 auto; z-index: 100;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.nav.is-solid {
  background: rgba(246, 239, 227, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
}
.nav__in {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; min-height: var(--nav-h);
  width: min(1120px, 100% - 40px); margin: 0 auto;
}
.nav__logo img { height: 28px; width: auto; }
.nav__crumbs { display: flex; align-items: center; gap: 9px; }
.nav__logo { display: inline-flex; }
.nav__sep { display: inline-flex; align-items: center; color: var(--ink); opacity: 0.38; }
.nav__sep svg { width: 15px; height: 15px; }
.nav__product {
  font-size: 1.02rem; font-weight: 700; letter-spacing: -0.01em;
  color: var(--ink); text-decoration: none;
  padding-bottom: 2px; border-bottom: 2px solid var(--terra);
  transition: color 0.2s var(--ease);
}
.nav__product:hover { color: var(--terra); }
.nav__cta { display: inline-flex; }
@media (max-width: 480px) {
  .nav__logo img { height: 24px; }
  .nav__crumbs { gap: 7px; }
  .nav__product { font-size: 0.95rem; }
  .nav__cta { min-height: 40px; padding: 8px 16px; font-size: 0.85rem; }
}

/* ==========================================================================
   1 · HERO
   ========================================================================== */
.phero {
  padding: calc(var(--nav-h) + clamp(40px, 10vh, 84px)) 20px clamp(64px, 11vw, 104px);
}
.phero__in {
  width: 100%; max-width: 1120px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 40px;
}
.phero__text { display: flex; flex-direction: column; align-items: flex-start; }
.phero__t {
  margin-top: 20px;
  font-size: clamp(2.2rem, 8vw, 3.9rem);
  font-weight: 700; line-height: 1.04; letter-spacing: -0.035em;
  max-width: 16ch;
}
.phero__sub {
  margin-top: 26px; max-width: 46ch;
  font-size: clamp(1.1rem, 3.4vw, 1.4rem);
  font-weight: 500; line-height: 1.5; color: var(--ink-soft);
}
.phero__chan {
  margin-top: 18px;
  font-size: 0.96rem; font-weight: 600; color: var(--muted);
  display: inline-flex; align-items: center; gap: 8px;
}
.phero__chan::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--wa); flex: none;
}
.phero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }

/* hero illustration — scattered data becomes one clear answer.
   No frame: the illustration's own cream ground blends into the page. */
.phero__art {
  width: 100%; max-width: 560px;
}
.phero__art img { width: 100%; height: auto; display: block; }

@media (min-width: 900px) {
  .phero { padding-top: calc(var(--nav-h) + clamp(48px, 10vh, 96px)); }
  .phero__in {
    flex-direction: row; align-items: center;
    gap: clamp(40px, 6vw, 76px);
  }
  .phero__text { flex: 1 1 auto; }
  .phero__art { flex: 0 0 clamp(420px, 48%, 560px); }
}

/* ==========================================================================
   2 · THE DIFFERENCE — vs consumer AI
   ========================================================================== */
.versus { padding: clamp(72px, 12vw, 130px) 24px; background: var(--sand-2); }
.versus__in { width: min(1080px, 100%); margin: 0 auto; }
.versus__head {
  max-width: 840px; margin: 0 auto clamp(36px, 5vw, 56px);
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  text-align: center;
}
.versus__t {
  max-width: 24ch;
  font-size: clamp(1.7rem, 5.6vw, 2.9rem);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1.12;
}
.versus__sub {
  max-width: 58ch; color: var(--ink-soft);
  font-size: clamp(1.02rem, 2.6vw, 1.18rem); line-height: 1.6; font-weight: 500;
}
.versus__grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.vcard {
  --d: 0s;
  text-align: left;
  display: flex; flex-direction: column; gap: 8px;
  padding: 26px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: box-shadow 0.25s var(--ease), border-color 0.25s var(--ease), translate 0.25s var(--ease);
}
.vcard:hover {
  box-shadow: 0 18px 40px -22px rgba(24, 43, 69, 0.4);
  border-color: rgba(24, 43, 69, 0.22);
  translate: 0 -4px;
}
.vcard__ico {
  display: grid; place-content: center;
  width: 46px; height: 46px; border-radius: 13px;
  margin-bottom: 6px;
  background: rgba(24, 43, 69, 0.06); color: var(--ink-soft);
}
.vcard__ico svg { width: 24px; height: 24px; }
.vcard__tag {
  display: inline-flex; align-items: center; width: fit-content;
  min-height: 26px; margin-bottom: 8px; padding: 0 12px;
  border-radius: 999px;
  background: rgba(24, 43, 69, 0.06); color: var(--ink-soft);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
}
.vcard h3 { font-size: 1.16rem; font-weight: 700; letter-spacing: -0.01em; }
.vcard p { color: var(--muted); font-size: 0.97rem; line-height: 1.55; }
.vcard--us {
  border-color: rgba(199, 92, 58, 0.42);
  background: linear-gradient(180deg, var(--white), rgba(199, 92, 58, 0.06));
  box-shadow: 0 22px 52px -26px rgba(199, 92, 58, 0.42);
}
.vcard--us .vcard__tag { background: var(--terra); color: var(--white); }
.vcard--us .vcard__ico { background: rgba(199, 92, 58, 0.16); color: var(--terra); }
.vcard--us h3 { color: var(--terra-deep); }
.vcard:nth-child(2) { --d: 0.06s; }
.vcard:nth-child(3) { --d: 0.12s; }

/* our card quietly breathes — alive next to the flat consumer cards */
.motion .vcard--us.is-in { animation: usBreathe 4s var(--ease) 0.6s infinite; }
@keyframes usBreathe {
  0%, 100% { box-shadow: 0 22px 52px -26px rgba(199, 92, 58, 0.42); }
  50% { box-shadow: 0 28px 62px -22px rgba(199, 92, 58, 0.62); }
}

@media (min-width: 820px) {
  .versus__grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

/* ==========================================================================
   3 · HOW IT WORKS
   ========================================================================== */
.how { padding: clamp(72px, 12vw, 130px) 24px; background: var(--sand); }
.how__in { width: min(1080px, 100%); margin: 0 auto; }
.how__head {
  max-width: 720px; margin: 0 auto clamp(36px, 5vw, 56px);
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  text-align: center;
}
.how__t {
  max-width: 20ch;
  font-size: clamp(1.7rem, 6vw, 2.9rem);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1.1;
}
/* mobile: vertical timeline — node on the rail (left), content to the right */
.how__steps { position: relative; display: grid; grid-template-columns: 1fr; gap: 6px; }
.how__steps::before {
  content: ""; position: absolute; z-index: 0;
  left: 25px; top: 32px; bottom: 32px; width: 2px; border-radius: 2px;
  background: linear-gradient(180deg, rgba(199, 92, 58, 0.12), rgba(199, 92, 58, 0.5) 12%, rgba(199, 92, 58, 0.5) 88%, rgba(199, 92, 58, 0.12));
}
.hstep {
  --d: 0s;
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 52px 1fr; column-gap: 18px; row-gap: 6px;
  align-items: start;
  padding: 14px 0;
}
.hstep__n {
  grid-column: 1; grid-row: 1 / span 2; align-self: start;
  position: relative; z-index: 1;
  display: grid; place-content: center;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--terra); color: #fff;
  font-size: 1.2rem; font-weight: 700;
  box-shadow: 0 0 0 6px var(--sand), 0 10px 22px -10px rgba(199, 92, 58, 0.6);
}
.hstep h3 { grid-column: 2; grid-row: 1; align-self: center; font-size: 1.18rem; font-weight: 700; letter-spacing: -0.01em; }
.hstep p { grid-column: 2; grid-row: 2; color: var(--muted); font-size: 0.98rem; line-height: 1.6; }
.hstep strong { color: var(--ink-soft); font-weight: 700; }
.hstep em { color: var(--terra); font-weight: 600; }
.hstep:nth-child(2) { --d: 0.08s; }
.hstep:nth-child(3) { --d: 0.16s; }
.hstep:nth-child(4) { --d: 0.24s; }

/* desktop: horizontal timeline — node on top, content below, linked by a rail */
@media (min-width: 760px) {
  .how__steps { --gap: clamp(20px, 3.2vw, 40px); grid-template-columns: repeat(4, 1fr); gap: var(--gap); }
  .how__steps::before { display: none; }
  .hstep {
    grid-template-columns: 1fr; row-gap: 0;
    justify-items: center; text-align: center; padding: 0;
  }
  .hstep__n { grid-column: 1; grid-row: 1; margin-bottom: 20px; }
  .hstep h3 { grid-column: 1; grid-row: 2; }
  .hstep p { grid-column: 1; grid-row: 3; margin-top: 10px; }
  /* each node links back to the previous one — exact regardless of gap */
  .hstep:not(:first-child)::before {
    content: ""; position: absolute; z-index: 0;
    top: 26px; right: 50%; width: calc(100% + var(--gap));
    height: 2px; border-radius: 2px;
    background: rgba(199, 92, 58, 0.5);
  }
}

/* ==========================================================================
   4 · WHAT IT DOES
   ========================================================================== */
.powers { padding: clamp(72px, 12vw, 130px) 24px; background: var(--sand-2); text-align: center; }
.powers__head {
  max-width: 720px; margin: 0 auto clamp(32px, 4vw, 48px);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.powers__t {
  font-size: clamp(1.8rem, 6vw, 3rem);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1.1;
}
.powers__grid {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 18px;
}
.power {
  --d: 0s;
  text-align: left;
  display: flex; flex-direction: column; gap: 12px;
  padding: 26px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: box-shadow 0.25s var(--ease), border-color 0.25s var(--ease), translate 0.25s var(--ease);
}
.power:hover {
  box-shadow: 0 18px 40px -22px rgba(24, 43, 69, 0.4);
  border-color: rgba(24, 43, 69, 0.22);
  translate: 0 -4px;
}
.power__ico {
  display: grid; place-content: center;
  width: 52px; height: 52px; border-radius: 15px;
  background: rgba(199, 92, 58, 0.12); color: var(--terra);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}
.power:hover .power__ico { background: var(--terra); color: var(--white); transform: scale(1.05) rotate(-4deg); }
.power__ico svg { width: 27px; height: 27px; }
.power h3 { font-size: 1.16rem; font-weight: 700; letter-spacing: -0.01em; }
.power p { color: var(--muted); font-size: 0.97rem; line-height: 1.55; }
.power__ex {
  margin-top: auto; align-self: flex-start;
  padding: 8px 13px; border-radius: 12px 12px 12px 4px;
  background: rgba(24, 43, 69, 0.05);
  color: var(--ink-soft); font-size: 0.84rem; font-weight: 600; line-height: 1.4;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.power:hover .power__ex { background: rgba(199, 92, 58, 0.1); color: var(--terra-deep); }
.power:nth-child(2) { --d: 0.06s; }
.power:nth-child(3) { --d: 0.12s; }
.power:nth-child(4) { --d: 0.06s; }
.power:nth-child(5) { --d: 0.12s; }
.power:nth-child(6) { --d: 0.18s; }
@media (min-width: 620px) { .powers__grid { grid-template-columns: 1fr 1fr; gap: 20px; } }
@media (min-width: 940px) { .powers__grid { grid-template-columns: repeat(3, 1fr); gap: 22px; } }

/* ==========================================================================
   5 · TWO MODES
   ========================================================================== */
.modes { padding: clamp(72px, 12vw, 130px) 24px; background: var(--sand); }
.modes__in { width: min(1000px, 100%); margin: 0 auto; }
.modes__head {
  max-width: 760px; margin: 0 auto clamp(32px, 4vw, 48px);
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  text-align: center;
}
.modes__t {
  max-width: 20ch;
  font-size: clamp(1.7rem, 6vw, 2.9rem);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1.12;
}
.modes__sub { max-width: 48ch; color: var(--muted); font-size: clamp(1rem, 2.6vw, 1.15rem); font-weight: 500; }
.modes__grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.mode {
  --d: 0s;
  display: flex; flex-direction: column; gap: 22px;
  padding: 30px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: box-shadow 0.25s var(--ease), border-color 0.25s var(--ease), translate 0.25s var(--ease);
}
.mode:hover {
  box-shadow: 0 18px 40px -22px rgba(24, 43, 69, 0.4);
  border-color: rgba(24, 43, 69, 0.22);
  translate: 0 -3px;
}
.mode__vizwrap {
  border-radius: 14px;
  background: rgba(24, 43, 69, 0.04);
  padding: 14px 16px;
}
.mode--perso .mode__vizwrap { background: rgba(199, 92, 58, 0.06); }
.mode__viz { width: 100%; max-width: 300px; height: auto; margin: 0 auto; display: block; }
.mode__tag {
  display: inline-flex; align-items: center; width: fit-content;
  min-height: 26px; margin-bottom: 14px; padding: 0 12px;
  border-radius: 999px;
  background: rgba(24, 43, 69, 0.08); color: var(--ink-soft);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
}
.mode--perso .mode__tag { background: rgba(199, 92, 58, 0.14); color: var(--terra-deep); }
.mode__top h3 { font-size: 1.3rem; font-weight: 700; letter-spacing: -0.01em; }
.mode__top p { margin-top: 12px; color: var(--muted); font-size: 0.99rem; line-height: 1.6; }
.mode__list { display: grid; gap: 10px; }
.mode__list li {
  display: flex; align-items: center; gap: 11px;
  padding: 11px 14px;
  border: 1px solid var(--line); border-radius: 12px;
  background: rgba(246, 239, 227, 0.5);
  color: var(--ink-soft); font-size: 0.92rem; font-weight: 600;
}
.mode__list li::before {
  content: "\2713"; flex: none;
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(199, 92, 58, 0.16); color: var(--terra);
  display: grid; place-content: center;
  font-size: 0.62rem; font-weight: 700;
}
.mode:nth-child(2) { --d: 0.08s; }
.modes__note {
  margin: clamp(24px, 4vw, 36px) auto 0; max-width: 52ch;
  text-align: center; color: var(--ink-soft);
  font-size: clamp(1rem, 2.6vw, 1.12rem); font-weight: 600;
}
@media (min-width: 760px) { .modes__grid { grid-template-columns: 1fr 1fr; gap: 20px; } }

/* ==========================================================================
   6 · TRUST — ink
   ========================================================================== */
.ptrust {
  background: var(--ink); color: var(--sand);
  display: flex; flex-direction: column; align-items: center;
  gap: 30px; text-align: center;
  padding: clamp(90px, 14vw, 150px) 24px;
}
.ptrust__t {
  font-size: clamp(1.8rem, 6.4vw, 3rem);
  font-weight: 700; letter-spacing: -0.025em; line-height: 1.1;
  max-width: 18ch;
}
.ptrust__pillars {
  width: 100%; max-width: 900px; margin-top: 8px;
  display: grid; grid-template-columns: 1fr; gap: 20px;
}
.ppillar {
  text-align: left;
  background: #1e3254;
  border: 1px solid rgba(246, 239, 227, 0.16);
  border-radius: 18px; padding: 28px 26px;
  display: flex; flex-direction: column; gap: 12px;
  box-shadow: 0 18px 40px -28px rgba(0, 0, 0, 0.6);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), translate 0.3s var(--ease);
}
.ppillar:hover {
  border-color: rgba(246, 239, 227, 0.32);
  background: #243a60;
  translate: 0 -3px;
}
.ppillar__ico {
  display: grid; place-content: center;
  width: 50px; height: 50px; border-radius: 14px;
  background: rgba(199, 92, 58, 0.18); color: var(--terra);
}
.ppillar__ico svg { width: 26px; height: 26px; }
.ppillar h3 { font-size: 1.18rem; font-weight: 700; letter-spacing: -0.01em; color: var(--sand); }
.ppillar p { font-size: 0.99rem; line-height: 1.55; color: rgba(246, 239, 227, 0.78); }
@media (min-width: 720px) { .ptrust__pillars { grid-template-columns: 1fr 1fr; gap: 22px; } }

.ptrust__list {
  width: 100%; max-width: 560px; margin-top: 4px;
  display: grid; grid-template-columns: 1fr; gap: 14px; text-align: left;
}
.ptrust__list li {
  font-size: 1rem; font-weight: 500; color: rgba(246, 239, 227, 0.82);
  display: flex; align-items: center; gap: 12px;
}
.ptrust__list li::before {
  content: "\2713"; flex: none;
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(199, 92, 58, 0.18); color: var(--terra);
  display: grid; place-content: center;
  font-size: 0.68rem; font-weight: 700;
}
.motion .ptrust__list li:nth-child(2) { transition-delay: 0.12s; }
.motion .ptrust__list li:nth-child(3) { transition-delay: 0.24s; }

/* ==========================================================================
   8 · OFFER — one number, the 30-day evaluation
   ========================================================================== */
.offer { padding: clamp(72px, 12vw, 130px) 24px; background: var(--sand-2); }
.offer__in { width: min(920px, 100%); margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
.offer__head {
  max-width: 680px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.offer__t { font-size: clamp(2rem, 7vw, 3.2rem); font-weight: 700; letter-spacing: -0.03em; line-height: 1.05; }
.offer__sub { max-width: 48ch; color: var(--muted); font-size: clamp(1rem, 2.6vw, 1.15rem); font-weight: 500; }

.offer__steps {
  width: 100%; margin-top: clamp(32px, 5vw, 48px);
  display: flex; flex-direction: column; align-items: stretch; gap: 16px;
}
.ostep {
  background: var(--white); border: 1px solid var(--line); border-radius: 18px;
  padding: 30px 26px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.ostep--main {
  border-color: rgba(199, 92, 58, 0.4);
  background: linear-gradient(180deg, var(--white), rgba(199, 92, 58, 0.06));
  box-shadow: 0 22px 52px -26px rgba(199, 92, 58, 0.4);
}
.ostep__badge {
  min-height: 26px; display: inline-flex; align-items: center; padding: 0 12px;
  border-radius: 999px; background: rgba(24, 43, 69, 0.08); color: var(--ink-soft);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
}
.ostep--main .ostep__badge { background: var(--terra); color: var(--white); }
.ostep__price { font-size: clamp(2.4rem, 7vw, 3.4rem); font-weight: 700; letter-spacing: -0.03em; color: var(--ink); line-height: 1; }
.ostep__price small { font-size: 0.9rem; font-weight: 600; color: var(--muted); letter-spacing: 0; }
.ostep--main .ostep__price { color: var(--terra-deep); }
.ostep__desc { max-width: 42ch; color: var(--muted); font-size: 0.95rem; line-height: 1.5; }
.offer__arrow { display: grid; place-content: center; color: var(--terra); transform: rotate(90deg); }
.offer__arrow svg { width: 26px; height: 26px; }

.offer__notes {
  width: 100%; margin-top: clamp(24px, 4vw, 36px);
  display: flex; flex-direction: column; align-items: center; gap: 18px; text-align: center;
}
.offer__ai { max-width: 56ch; color: var(--ink-soft); font-size: 0.98rem; line-height: 1.55; }
.offer__ai strong { color: var(--ink); font-weight: 700; }
.offer__incl { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.offer__incl li {
  display: flex; align-items: center; gap: 7px;
  padding: 7px 14px; border-radius: 999px;
  background: rgba(255, 253, 249, 0.8); border: 1px solid var(--line);
  font-size: 0.85rem; font-weight: 600; color: var(--ink-soft);
}
.offer__incl li::before { content: "\2713"; color: var(--terra); font-weight: 700; font-size: 0.7rem; }
.offer__nohidden { max-width: 48ch; color: var(--muted); font-size: 0.9rem; font-weight: 600; }
.offer__cta { margin-top: clamp(26px, 4vw, 38px); }

@media (min-width: 720px) {
  .offer__steps { flex-direction: row; align-items: stretch; }
  .ostep { flex: 1; }
  .offer__arrow { transform: none; }
}

/* ==========================================================================
   9 · CLOSE — terracotta warmth
   ========================================================================== */
.pclose {
  background: linear-gradient(160deg, #cd6440, var(--terra-deep));
  background-size: 160% 160%;
  color: var(--sand);
  display: flex; flex-direction: column; align-items: center;
  gap: 24px; text-align: center;
  padding: clamp(100px, 15vw, 165px) 24px;
}
.pclose__t {
  font-size: clamp(2.3rem, 8.5vw, 4.3rem);
  font-weight: 700; letter-spacing: -0.035em; line-height: 1.03;
  color: var(--white);
}
.pclose__sub { max-width: 44ch; font-size: 1.06rem; line-height: 1.6; color: rgba(246, 239, 227, 0.92); }
.pclose__cta { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 12px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.foot { background: var(--ink); color: rgba(246, 239, 227, 0.75); padding: 64px 24px 34px; }
.foot__in { width: min(1120px, 100%); margin: 0 auto; display: flex; flex-direction: column; gap: 28px; }
.foot__top { display: flex; flex-direction: column; gap: 34px; justify-content: space-between; align-items: flex-start; }
.foot__brand img { height: 30px; width: auto; }
.foot__brand p { margin-top: 18px; font-size: 0.94rem; line-height: 1.7; }
.foot__legal { margin-top: 10px; font-size: 0.8rem; line-height: 1.65; color: rgba(246, 239, 227, 0.5); letter-spacing: 0.01em; }
.foot__contact { display: grid; gap: 5px; font-size: 0.94rem; }
.foot__contact h2 { margin: 0 0 2px; color: var(--white); font-size: 0.98rem; line-height: 1.2; }
.foot__contact a, .foot__links a { width: fit-content; transition: color 0.2s var(--ease); }
.foot__contact a:hover, .foot__links a:hover { color: var(--terra); }
.foot__links {
  border-top: 1px solid rgba(246, 239, 227, 0.17);
  padding-top: 24px;
  display: flex; flex-wrap: wrap; gap: 10px 22px;
  font-weight: 600; font-size: 0.9rem;
}
.foot__bottom {
  border-top: 1px solid rgba(246, 239, 227, 0.12);
  padding-top: 24px; text-align: center;
  color: rgba(246, 239, 227, 0.58); font-size: 0.88rem;
}
@media (min-width: 720px) {
  .foot__top { flex-direction: row; align-items: flex-start; }
  .foot__contact { min-width: 210px; }
  .foot__links { justify-content: center; }
}

/* ==========================================================================
   WHATSAPP FLOAT
   ========================================================================== */
.wa-float {
  --mx: 0px; --my: 0px;
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 180;
  display: inline-flex; align-items: center; gap: 10px;
  min-height: 54px; padding: 0 18px 0 15px;
  border-radius: 999px;
  background: #1fae57; color: #fff;
  font-weight: 700; font-size: 0.92rem;
  box-shadow: 0 18px 44px -18px rgba(24, 43, 69, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.22) inset;
  transform: translate3d(var(--mx), var(--my), 0);
  transition: transform 0.24s var(--ease), box-shadow 0.24s var(--ease), background 0.24s var(--ease), scale 0.15s var(--ease);
}
.wa-float:active { scale: 0.94; }
.wa-float:hover {
  background: var(--wa);
  transform: translate3d(var(--mx), calc(var(--my) - 2px), 0);
  box-shadow: 0 22px 54px -18px rgba(24, 43, 69, 0.58), 0 0 0 1px rgba(255, 255, 255, 0.22) inset;
}
.wa-float svg { width: 23px; height: 23px; flex: none; }
.wa-float__pulse {
  position: absolute; inset: -7px;
  border: 2px solid rgba(33, 179, 88, 0.42);
  border-radius: inherit; pointer-events: none;
}
@media (max-width: 520px) {
  .wa-float { width: 56px; height: 56px; min-height: 56px; justify-content: center; padding: 0; }
  .wa-float span:not(.wa-float__pulse) { display: none; }
}

/* ==========================================================================
   MOTION — reveals (JS opt-in via .motion)
   ========================================================================== */
.motion .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.motion .reveal.is-in { opacity: 1; transform: none; }

.motion .hstep.reveal,
.motion .power.reveal,
.motion .vcard.reveal,
.motion .mode.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.55s var(--ease) var(--d), transform 0.55s var(--ease) var(--d),
              box-shadow 0.25s var(--ease), border-color 0.25s var(--ease), translate 0.25s var(--ease);
}
.motion .hstep.reveal.is-in,
.motion .power.reveal.is-in,
.motion .vcard.reveal.is-in,
.motion .mode.reveal.is-in { opacity: 1; transform: none; }

.motion .stage { opacity: 0; transform: translateY(22px); filter: blur(7px); }
.motion.hero-go .stage { opacity: 1; transform: none; filter: blur(0); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease), filter 0.9s var(--ease); }
.motion.hero-go .stage:nth-child(1) { transition-delay: 0.05s; }
.motion.hero-go .stage:nth-child(2) { transition-delay: 0.2s; }
.motion.hero-go .stage:nth-child(3) { transition-delay: 0.4s; }
.motion.hero-go .stage:nth-child(4) { transition-delay: 0.6s; }
.motion.hero-go .stage:nth-child(5) { transition-delay: 0.8s; }

.motion .wa-float { animation: waEnter 0.65s var(--ease) 1.1s backwards; }
.motion .wa-float__pulse { animation: waPulse 2.4s var(--ease) 2s infinite; }
.motion .pclose { animation: warmShift 9s ease-in-out infinite alternate; }
@keyframes warmShift {
  from { background-position: 0% 50%; }
  to { background-position: 100% 50%; }
}
@keyframes waEnter { from { opacity: 0; transform: translate3d(0, 18px, 0) scale(0.92); } }
@keyframes waPulse {
  0% { transform: scale(0.82); opacity: 0.82; }
  100% { transform: scale(1.22); opacity: 0; }
}

/* ==========================================================================
   ENHANCEMENTS v2 — "la substance, vivante"
   Depth on the hero, light that follows the cursor, a lattice that breathes,
   a number that counts itself. Refined, on-brand, meaning-carrying.
   ========================================================================== */

/* the headline earns a terracotta underline once it lands */
.phero__t { position: relative; }
.phero__t::after {
  content: ""; position: absolute; left: 2px; bottom: -12px;
  height: 4px; width: 0; border-radius: 4px;
  background: linear-gradient(90deg, var(--terra), #e0894f);
}
.motion.hero-go .phero__t::after { animation: uDraw 0.9s var(--ease) 1s both; }
@keyframes uDraw { from { width: 0; } to { width: 76px; } }

/* a quiet scroll invitation */
.phero__scroll {
  display: inline-flex; align-items: center; gap: 12px;
  margin-top: 8px; padding-top: 6px;
  color: var(--muted); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  transition: color 0.2s var(--ease);
}
.phero__scroll:hover { color: var(--terra); }
.phero__scroll-line {
  position: relative; width: 1.5px; height: 38px; border-radius: 2px;
  background: rgba(24, 43, 69, 0.16); overflow: hidden;
}
.phero__scroll-line::after {
  content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 42%;
  border-radius: 2px; background: var(--terra);
}
.motion .phero__scroll-line::after { animation: scrollCue 1.9s var(--ease) infinite; }
@keyframes scrollCue {
  0% { transform: translateY(-120%); }
  60%, 100% { transform: translateY(260%); }
}

/* ---- cursor-lit cards --------------------------------------------------- */
.vcard, .power, .mode { position: relative; overflow: hidden; isolation: isolate; }
.vcard > *, .power > *, .mode > * { position: relative; z-index: 1; }
.vcard::after, .power::after, .mode::after {
  content: ""; position: absolute; inset: 0; z-index: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(240px circle at var(--sx, 50%) var(--sy, 50%), rgba(199, 92, 58, 0.09), transparent 62%);
  opacity: 0; transition: opacity 0.35s var(--ease);
}
.vcard:hover::after, .power:hover::after, .mode:hover::after { opacity: 1; }

/* the step number pops in as its step reveals */
.motion .hstep.reveal .hstep__n { opacity: 0; }
.motion .hstep.reveal.is-in .hstep__n { animation: numPop 0.55s var(--ease) calc(var(--d) + 0.1s) both; }
@keyframes numPop {
  0% { opacity: 0; transform: scale(0.4); }
  55% { opacity: 1; transform: scale(1.12); }
  100% { opacity: 1; transform: scale(1); }
}

/* ---- trust: warm light on dark, over a breathing zellige lattice -------- */
.ptrust { position: relative; overflow: hidden; }
.ptrust > .kicker,
.ptrust > .ptrust__t,
.ptrust > .ptrust__pillars,
.ptrust > .ptrust__list { position: relative; z-index: 1; }
.ptrust__zellige {
  position: absolute; inset: -8%; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'><g fill='none' stroke='%23f6efe3' stroke-opacity='0.55' stroke-width='1'><rect x='12' y='12' width='36' height='36'/><path d='M30 3 L57 30 L30 57 L3 30 Z'/><circle cx='30' cy='30' r='6'/></g></svg>");
  background-size: 104px 104px;
  opacity: 0.06;
  -webkit-mask-image: radial-gradient(85% 48% at 50% 0%, #000 0%, transparent 72%);
          mask-image: radial-gradient(85% 48% at 50% 0%, #000 0%, transparent 72%);
}
.motion .ptrust__zellige { animation: zellBreathe 16s ease-in-out infinite; }
@keyframes zellBreathe {
  0%, 100% { opacity: 0.045; transform: scale(1); }
  50% { opacity: 0.08; transform: scale(1.04); }
}
.ppillar { position: relative; overflow: hidden; isolation: isolate; }
.ppillar > * { position: relative; z-index: 1; }
.ppillar::after {
  content: ""; position: absolute; inset: 0; z-index: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(260px circle at var(--sx, 50%) var(--sy, 50%), rgba(224, 180, 137, 0.16), transparent 60%);
  opacity: 0; transition: opacity 0.35s var(--ease);
}
.ppillar:hover::after { opacity: 1; }

/* ---- offer: the flow reads forward -------------------------------------- */
.motion .offer__arrow svg { animation: arrowNudge 1.9s var(--ease) infinite; }
@keyframes arrowNudge {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}

/* ---- two-modes: a pulse rides the connector into the hub on reveal ------ */
.mflow { opacity: 0; }
.motion .mode.reveal.is-in .mflow { animation: mFlow 1.9s linear infinite; }
@keyframes mFlow {
  0% { cx: var(--sx); cy: var(--sy); opacity: 0; }
  15% { opacity: 1; }
  78% { opacity: 1; }
  100% { cx: var(--ex); cy: var(--ey); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .phero__t::after { width: 76px; }
}

/* ---- FAQ (ported from homepage — same tokens/chrome) ---- */
.faq { padding: clamp(72px, 11vw, 120px) 24px; background: var(--sand); }
.faq__in {
  width: min(820px, 100%); margin: 0 auto;
  display: grid; gap: clamp(28px, 5vw, 46px);
}
.faq__head {
  display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center;
}
.faq__title {
  max-width: 22ch;
  font-size: clamp(1.8rem, 6vw, 3rem);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1.1;
}
.faq__list { display: grid; gap: 12px; }
.faq__item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 253, 249, 0.72);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.faq__item[open] {
  border-color: rgba(24, 43, 69, 0.22);
  box-shadow: 0 18px 44px -28px rgba(24, 43, 69, 0.34);
}
.faq__item summary {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 22px;
  cursor: pointer; list-style: none;
  font-size: 1.05rem; font-weight: 700; letter-spacing: -0.01em; line-height: 1.35;
  color: var(--ink);
  transition: color 0.2s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--terra); }
.faq__q { flex: 1; }
.faq__icon {
  flex: none; position: relative;
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(199, 92, 58, 0.12); color: var(--terra);
  transition: transform 0.3s var(--ease), background 0.25s var(--ease);
}
.faq__item[open] .faq__icon { transform: rotate(135deg); }
.faq__item summary:hover .faq__icon { background: rgba(199, 92, 58, 0.2); }
.faq__icon::before,
.faq__icon::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  background: currentColor; border-radius: 2px;
  transform: translate(-50%, -50%);
}
.faq__icon::before { width: 11px; height: 2px; }
.faq__icon::after { width: 2px; height: 11px; }
.faq__a { padding: 0 22px 22px; }
.faq__a p {
  max-width: 64ch;
  color: var(--ink-soft);
  font-size: 0.98rem; line-height: 1.62;
}
.faq__item[open] .faq__a { animation: faqIn 0.35s var(--ease) both; }
@keyframes faqIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}
