/* =====================================================================
   L'Atelier By — Livraison Bureau (office-delivery landing)
   Imported from Claude Design "Livraison Bureau.dc.html".
   Pure visual layer — brand palette, layout, carousels, reveal anim.
   Fonts (Gotham / Vank) + brand colors are declared in the entry HTML.
   ===================================================================== */

.lb {
  --lp-abricot: #F2C9A0;
  --lp-abricot-soft: #F8E2CB;
  --lp-abricot-deep: #E9B888;
  --lp-ruby: #8D1D2C;
  --lp-ruby-deep: #6E1421;
  --lp-ink: #231F1C;
  --lp-surface: #FFFFFF;
  --lp-paper: #FBF3EA;
  --lp-muted: #8C7A6A;
  --lp-faint: #B9A793;
  --lp-on-abricot: #6B4420;
  --lp-hair: rgba(107, 68, 32, 0.16);
  --lp-hair-2: rgba(107, 68, 32, 0.09);
  --lp-ff-ui: var(--font-ui);
  --lp-ff-script: var(--font-display);

  background: var(--lp-paper);
  color: var(--lp-ink);
  font-family: var(--lp-ff-ui);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  /* `clip` contains the hero art's horizontal bleed WITHOUT creating a scroll
     container — unlike `hidden`, which silently breaks the sticky header. */
  overflow-x: clip;
}

.lb *, .lb *::before, .lb *::after { box-sizing: border-box; }
.lb a { color: inherit; }

@keyframes lpFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-14px) rotate(2deg); }
}

/* Reveal-on-scroll */
.lb [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s cubic-bezier(.4, 0, .2, 1), transform .7s cubic-bezier(.4, 0, .2, 1);
}
.lb [data-reveal].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .lb [data-reveal] { opacity: 1; transform: none; transition: none; }
  .lb .lb-hero__art { animation: none; }
  .lb .lb-cta-attn { animation: none; }
}

.lb-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 56px);
}

/* Shared bits ------------------------------------------------------- */
.lb-eyebrow {
  margin: 0 0 16px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--lp-ruby);
}
.lb-eyebrow--inline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}
.lb-eyebrow--inline span { width: 26px; height: 1px; background: var(--lp-ruby); }
.lb-h2 {
  font-family: var(--lp-ff-ui);
  font-weight: 600;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--lp-ink);
}
.lb-lede { margin: 0; font-size: 17px; color: var(--lp-muted); line-height: 1.6; }

.lb-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: var(--lp-ff-ui);
  border-radius: 999px;
  transition: background .2s, border-color .2s, color .2s;
}
.lb-btn--primary {
  background: var(--lp-ruby);
  color: var(--lp-paper);
  font-size: 15px;
  font-weight: 500;
  padding: 16px 28px;
}
.lb-btn--primary:hover { background: var(--lp-ruby-deep); }
/* `.lb a{color:inherit}` (0,1,1) would otherwise beat the button classes on
   anchor buttons — pin the button text colors with matching specificity. */
.lb a.lb-btn--primary { color: var(--lp-paper); }
.lb a.lb-btn--ghost { color: var(--lp-ink); }
.lb-btn--ghost {
  background: transparent;
  color: var(--lp-ink);
  font-size: 15px;
  font-weight: 500;
  padding: 16px 24px;
  border: 1px solid var(--lp-hair);
}
.lb-btn--ghost:hover { border-color: var(--lp-ink); }
.lb a.lb-btn--ink {
  background: var(--lp-ink);
  color: var(--lp-paper);
  font-size: 14px;
  font-weight: 500;
  height: 40px;
  padding: 0 22px;
}
.lb a.lb-btn--ink:hover { background: var(--lp-ruby); color: var(--lp-paper); }
.lb-btn--sm { font-size: 14px; font-weight: 500; padding: 13px 22px; }

/* Header CTA — subtle periodic "attention" nudge to catch the eye.
   Idle most of the cycle, then a quick light vibration + micro-zoom. */
.lb a.lb-cta-attn { animation: lbCtaAttn 4.5s ease-in-out infinite; will-change: transform; }
.lb a.lb-cta-attn:hover, .lb a.lb-cta-attn:focus-visible { animation: none; }
@keyframes lbCtaAttn {
  0%, 70%, 100% { transform: translateX(0) scale(1); }
  74% { transform: translateX(-1.5px) scale(1.04); }
  78% { transform: translateX(1.5px)  scale(1.04); }
  82% { transform: translateX(-1.4px) scale(1.03); }
  86% { transform: translateX(1px)    scale(1.02); }
  90% { transform: translateX(0)      scale(1); }
}

/* Header ------------------------------------------------------------ */
.lb-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: color-mix(in srgb, var(--lp-abricot) 82%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--lp-hair-2);
}
.lb-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 56px);
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.lb-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.lb-brand img { height: 22px; width: auto; display: block; }
.lb-brand__tag {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--lp-ruby);
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}
.lb-nav { display: flex; align-items: center; gap: 30px; }
.lb-nav a {
  font-size: 13px;
  letter-spacing: 0.03em;
  color: var(--lp-on-abricot);
  text-decoration: none;
  transition: color .2s;
}
.lb-nav a:hover { color: var(--lp-ruby); }
.lb-nav a.is-active { color: var(--lp-ruby); font-weight: 600; }
.lb-header__right { display: flex; align-items: center; gap: 14px; }
.lb-lang {
  display: inline-flex;
  align-items: center;
  height: 40px;
  gap: 2px;
  border: 1px solid var(--lp-hair);
  border-radius: 999px;
  padding: 3px;
}
.lb-lang button {
  border: none;
  background: transparent;
  color: var(--lp-muted);
  font-family: var(--lp-ff-ui);
  font-size: 11px;
  letter-spacing: 0.06em;
  padding: 5px 11px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.lb-lang button.is-active { background: var(--lp-ink); color: var(--lp-paper); }

/* Hero -------------------------------------------------------------- */
.lb-hero {
  position: relative;
  background: linear-gradient(180deg, var(--lp-abricot) 0%, var(--lp-abricot-soft) 100%);
  overflow: hidden;
  padding: clamp(56px, 8vw, 104px) 0 clamp(64px, 9vw, 120px);
}
.lb-hero__art {
  position: absolute;
  top: -60px;
  right: -40px;
  width: min(46vw, 560px);
  opacity: 0.9;
  pointer-events: none;
  animation: lpFloat 9s ease-in-out infinite;
}
.lb-hero__art img { width: 100%; height: auto; display: block; }
.lb-hero__inner { position: relative; }
.lb-hero__body { max-width: 640px; }
.lb-hero h1 {
  font-family: var(--lp-ff-ui);
  font-weight: 600;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  color: var(--lp-ink);
}
.lb-hero h1 .lb-script {
  font-family: var(--lp-ff-script);
  font-weight: 400;
  color: var(--lp-ruby);
  font-size: 0.82em;
}
.lb-hero__lede {
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.55;
  color: var(--lp-on-abricot);
  margin: 0 0 36px;
  max-width: 52ch;
}
.lb-hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.lb-hero__note {
  margin: 34px 0 0;
  font-size: 13px;
  color: var(--lp-on-abricot);
  display: flex;
  align-items: center;
  gap: 8px;
}
.lb-hero__note span {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--lp-ruby); display: inline-block;
}

/* Sections ---------------------------------------------------------- */
.lb-section { padding: clamp(56px, 7vw, 96px) 0; }
.lb-section--surface { background: var(--lp-surface); border-bottom: 1px solid var(--lp-hair-2); }
.lb-section--abricot { background: var(--lp-abricot-soft); }
.lb-head { max-width: 620px; margin-bottom: 44px; }
.lb-head--wide { max-width: 640px; }
.lb-head .lb-h2 { margin-bottom: 16px; }
.lb-head--center { text-align: center; margin-left: auto; margin-right: auto; }

/* Zone selector ----------------------------------------------------- */
.lb-zone__head {
  display: grid;
  gap: 14px;
  max-width: 640px;
  margin: 0 auto 40px;
  text-align: center;
}
.lb-zone__head .lb-eyebrow { margin: 0; }
.lb-zone__head .lb-lede { margin: 0; }
.lb-zone__card {
  max-width: 860px;
  margin: 0 auto;
  background: var(--lp-paper);
  border: 1px solid var(--lp-hair);
  border-radius: 20px;
  padding: clamp(22px, 3vw, 36px);
  box-shadow: 0 30px 70px -50px rgba(107, 68, 32, 0.5);
}
.lb-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lp-muted);
  margin: 0 0 10px;
}
.lb-select-wrap { position: relative; }
.lb-select {
  width: 100%;
  appearance: none;
  font-family: var(--lp-ff-ui);
  font-size: 17px;
  color: var(--lp-ink);
  background: var(--lp-surface);
  border: 1.5px solid var(--lp-hair);
  border-radius: 12px;
  padding: 16px 44px 16px 18px;
  cursor: pointer;
}
.lb-select:focus { outline: none; border-color: var(--lp-ruby); }
.lb-select-caret {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--lp-muted);
}
.lb-zone__generic { margin: 20px 4px 0; font-size: 14.5px; color: var(--lp-muted); line-height: 1.6; }
.lb-zone__reveal { margin-top: 24px; border-top: 1px solid var(--lp-hair); padding-top: 24px; }
.lb-chip-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lp-abricot);
  color: var(--lp-on-abricot);
  font-size: 12px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.lb-params {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2px;
  background: var(--lp-hair-2);
  border: 1px solid var(--lp-hair-2);
  border-radius: 14px;
  overflow: hidden;
}
.lb-param { background: var(--lp-surface); padding: 18px 20px; }
.lb-param__k {
  margin: 0 0 6px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lp-muted);
}
.lb-param__v { margin: 0; font-size: 16px; font-weight: 500; color: var(--lp-ink); }
.lb-param__v--ruby { color: var(--lp-ruby); }
.lb-zone__note {
  margin: 16px 4px 0;
  font-size: 14px;
  color: var(--lp-on-abricot);
  display: flex;
  align-items: flex-start;
  gap: 9px;
  line-height: 1.55;
}
.lb-zone__note svg { flex: 0 0 auto; margin-top: 2px; }
.lb-zone__cta { margin-top: 22px; }
.lb-zone__out-body { margin: 0 0 16px; font-size: 15px; color: var(--lp-ink); line-height: 1.6; }
.lb-input {
  width: 100%;
  font-family: var(--lp-ff-ui);
  font-size: 16px;
  color: var(--lp-ink);
  background: var(--lp-surface);
  border: 1.5px solid var(--lp-hair);
  border-radius: 12px;
  padding: 14px 18px;
}
.lb-input:focus { outline: none; border-color: var(--lp-ruby); }

/* Carousels (shared) ------------------------------------------------ */
.lb-carousel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 8px 0;
}
.lb-carousel--tight { gap: 16px; }
.lb-carousel__nav {
  position: absolute;
  z-index: 9;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--lp-hair);
  background: var(--lp-surface);
  color: var(--lp-ruby);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px -14px rgba(107, 68, 32, 0.6);
  transition: background .2s, color .2s, border-color .2s;
}
.lb-carousel__nav:hover { background: var(--lp-ruby); color: var(--lp-paper); border-color: var(--lp-ruby); }
.lb-carousel__nav--prev { left: 0; }
.lb-carousel__nav--next { right: 0; }
.lb-card {
  flex: 0 0 auto;
  transition: transform .45s cubic-bezier(.4, 0, .2, 1), opacity .45s cubic-bezier(.4, 0, .2, 1);
  background: var(--lp-surface);
  border: 1px solid var(--lp-hair);
  border-radius: 18px;
}
.lb-dots { display: flex; justify-content: center; gap: 9px; margin-top: 22px; }
.lb-dots button {
  height: 8px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: width .35s, background .35s;
}

/* Use-case cards */
.lb-uc-card {
  width: 210px;
  border-radius: 18px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.lb-uc-card__icon { width: 60px; height: 60px; }
.lb-uc-card__icon img { width: 100%; height: 100%; object-fit: contain; display: block; }
.lb-card-title {
  font-family: var(--lp-ff-ui);
  font-weight: 600;
  font-size: 17px;
  margin: 0;
  color: var(--lp-ink);
  line-height: 1.25;
}
.lb-card-desc { margin: 0; font-size: 14px; color: var(--lp-muted); line-height: 1.5; }

/* Process ----------------------------------------------------------- */
.lb-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}
.lb-step {
  background: var(--lp-surface);
  border: 1px solid var(--lp-hair);
  border-radius: 18px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lb-step__num {
  font-family: var(--lp-ff-ui);
  font-weight: 600;
  font-size: 15px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--lp-ruby);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.lb-step__chips { margin-top: 2px; display: flex; flex-wrap: wrap; gap: 7px; }
.lb-chip-sm {
  font-size: 12px;
  background: var(--lp-abricot);
  color: var(--lp-on-abricot);
  padding: 5px 11px;
  border-radius: 999px;
}
.lb-step__hint { margin-top: 2px; font-size: 13px; color: var(--lp-ruby); text-decoration: none; font-weight: 500; }

/* Formules ---------------------------------------------------------- */
.lb-offer-card {
  width: 340px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.lb-offer-card__top { background: var(--lp-abricot-soft); padding: 26px 24px 0; position: relative; }
.lb-offer-card__top img { width: 96px; height: 96px; object-fit: contain; display: block; }
.lb-offer-card__badge {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  background: var(--lp-ruby);
  color: #fff;
  padding: 5px 12px;
  border-radius: 999px;
}
.lb-offer-card__body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.lb-offer-card__body h3 {
  font-family: var(--lp-ff-ui);
  font-weight: 600;
  font-size: 20px;
  margin: 0;
  color: var(--lp-ink);
}
.lb-offer-card__incl { list-style: none; margin: 2px 0 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.lb-offer-card__incl li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--lp-ink);
  line-height: 1.45;
}
.lb-offer-card__incl svg { flex: 0 0 auto; margin-top: 2px; }
.lb-offer-card__meta {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--lp-hair-2);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lb-offer-card__meta p { margin: 0; font-size: 12.5px; color: var(--lp-muted); }
.lb-offer-card__meta b { color: var(--lp-on-abricot); font-weight: 500; }

.lb-rec {
  margin-top: 32px;
  background: var(--lp-ruby);
  color: #fff;
  border-radius: 20px;
  padding: clamp(28px, 4vw, 44px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.lb-rec__text { max-width: 560px; }
.lb-rec__text .lb-eyebrow { color: var(--lp-abricot); margin-bottom: 12px; }
.lb-rec__text h3 {
  font-family: var(--lp-ff-ui);
  font-weight: 600;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.15;
  margin: 0 0 12px;
}
.lb-rec__text p { margin: 0; font-size: 15.5px; line-height: 1.6; color: rgba(255, 255, 255, 0.85); }
.lb-rec__points { display: flex; flex-direction: column; gap: 12px; min-width: 220px; }
.lb-rec__points > div { display: flex; align-items: center; gap: 11px; font-size: 14.5px; }
.lb-rec__points span { width: 8px; height: 8px; border-radius: 50%; background: var(--lp-abricot); flex: 0 0 auto; }

/* Products ---------------------------------------------------------- */
.lb-prod-assure { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }
.lb-assure {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--lp-abricot);
  color: var(--lp-on-abricot);
  font-size: 13.5px;
  font-weight: 500;
  padding: 9px 16px;
  border-radius: 999px;
}
.lb-prod-card { width: 380px; max-width: 82vw; border-radius: 20px; overflow: hidden; }
.lb-prod-card__media { position: relative; width: 100%; height: 260px; background: var(--lp-abricot-soft); }
.lb-prod-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lb-prod-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  pointer-events: none;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  background: var(--lp-ruby);
  color: #fff;
  padding: 5px 12px;
  border-radius: 999px;
}
.lb-prod-card__body { padding: 20px 22px 24px; }
.lb-prod-card__body h3 {
  font-family: var(--lp-ff-ui);
  font-weight: 600;
  font-size: 19px;
  margin: 0 0 8px;
  color: var(--lp-ink);
}
.lb-prod-card__body p { margin: 0; font-size: 14px; color: var(--lp-muted); line-height: 1.5; }

/* Proof ------------------------------------------------------------- */
.lb-specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2px;
  background: var(--lp-hair-2);
  border: 1px solid var(--lp-hair-2);
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 48px;
}
.lb-spec { background: var(--lp-paper); padding: 28px 24px; text-align: center; }
.lb-spec__v {
  font-family: var(--lp-ff-ui);
  font-weight: 600;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1;
  margin: 0 0 8px;
  color: var(--lp-ruby);
}
.lb-spec__l { margin: 0; font-size: 13px; color: var(--lp-muted); line-height: 1.45; }
.lb-clients-label {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lp-muted);
  margin: 0 0 22px;
}
.lb-clients {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(24px, 5vw, 56px);
  margin-bottom: 56px;
  opacity: 0.55;
}
.lb-clients span {
  font-family: var(--lp-ff-ui);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.02em;
  color: var(--lp-ink);
}
.lb-testimonials { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 20px; }
.lb-quote {
  margin: 0;
  background: var(--lp-surface);
  border: 1px solid var(--lp-hair);
  border-radius: 20px;
  padding: 30px 28px;
}
.lb-quote__mark { color: var(--lp-ruby); font-family: var(--lp-ff-script); font-size: 40px; line-height: 0.6; margin-bottom: 14px; }
.lb-quote blockquote { margin: 0 0 20px; font-size: 17px; line-height: 1.55; color: var(--lp-ink); }
.lb-quote figcaption { display: flex; align-items: center; gap: 12px; }
.lb-quote__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--lp-abricot);
  color: var(--lp-on-abricot);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 15px;
}
.lb-quote__author { display: block; font-size: 14px; font-weight: 600; color: var(--lp-ink); }
.lb-quote__company { display: block; font-size: 12.5px; color: var(--lp-muted); }

/* FAQ --------------------------------------------------------------- */
.lb-faq { max-width: 820px; }
.lb-faq__list { display: flex; flex-direction: column; gap: 12px; }
.lb-faq__item { background: var(--lp-surface); border: 1px solid var(--lp-hair); border-radius: 14px; padding: 4px 22px; }
.lb-faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 0;
  font-size: 16.5px;
  font-weight: 500;
  color: var(--lp-ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.lb-faq__item summary::-webkit-details-marker { display: none; }
.lb-faq__item summary svg { flex: 0 0 auto; transition: transform .25s; }
.lb-faq__item[open] summary svg { transform: rotate(45deg); }
.lb-faq__answer { padding: 0 0 20px; font-size: 15px; line-height: 1.65; color: var(--lp-muted); }
.lb-faq__answer a { color: var(--lp-ruby); text-decoration: none; font-weight: 500; }

/* Contact ----------------------------------------------------------- */
.lb-contact { background: linear-gradient(180deg, var(--lp-abricot-soft) 0%, var(--lp-abricot) 100%); }
.lb-contact__grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}
.lb-contact h2 {
  font-family: var(--lp-ff-ui);
  font-weight: 600;
  font-size: clamp(30px, 3.8vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0 0 20px;
  color: var(--lp-ink);
}
.lb-contact__lede { margin: 0 0 28px; font-size: 17px; color: var(--lp-on-abricot); line-height: 1.6; }
.lb-contact__points { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.lb-contact__points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--lp-ink);
  line-height: 1.5;
}
.lb-contact__points svg { flex: 0 0 auto; margin-top: 2px; }
.lb-form {
  background: var(--lp-surface);
  border: 1px solid var(--lp-hair);
  border-radius: 22px;
  padding: clamp(24px, 3vw, 40px);
  box-shadow: 0 40px 90px -50px rgba(107, 68, 32, 0.55);
}
.lb-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.lb-field { display: flex; flex-direction: column; gap: 8px; }
.lb-field--full { grid-column: span 2; }
.lb-field label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--lp-muted);
}
.lb-field__star { color: var(--lp-ruby); }
.lb-fld {
  font-family: var(--lp-ff-ui);
  font-size: 15px;
  color: var(--lp-ink);
  background: var(--lp-paper);
  border: 1px solid var(--lp-hair);
  border-radius: 10px;
  padding: 13px 15px;
  width: 100%;
}
.lb-fld:focus { outline: none; border-color: var(--lp-ruby); }
.lb-fld--err { border-color: var(--lp-ruby); }
.lb-fld--select { appearance: none; padding-right: 40px; cursor: pointer; }
select.lb-fld { cursor: pointer; }
textarea.lb-fld { resize: vertical; }
.lb-field__caret {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--lp-muted);
}
.lb-field__selwrap { position: relative; }
.lb-field__hint { font-size: 12.5px; color: var(--lp-on-abricot); }
.lb-field__err { font-size: 12px; color: var(--lp-ruby); }
.lb-field label.lb-consent {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: normal;
  text-transform: none;
  font-weight: 400;
  color: var(--lp-muted);
  cursor: pointer;
}
.lb-consent input { margin-top: 2px; width: 18px; height: 18px; accent-color: var(--lp-ruby); flex: 0 0 auto; }
.lb-submit {
  margin-top: 26px;
  width: 100%;
  justify-content: center;
  background: var(--lp-ruby);
  color: var(--lp-paper);
  font-size: 15px;
  font-weight: 500;
  border-radius: 999px;
  padding: 16px 24px;
}
.lb-submit:hover { background: var(--lp-ruby-deep); }
.lb-form__note { margin: 16px 0 0; font-size: 12px; line-height: 1.55; color: var(--lp-faint); text-align: center; }

/* Footer ------------------------------------------------------------ */
.lb-footer { background: var(--lp-ink); color: var(--lp-paper); padding: clamp(56px, 7vw, 88px) 0 36px; }
.lb-footer__cols { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.lb-footer__logo {
  height: 22px;
  width: auto;
  display: block;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}
.lb-footer__tag { margin: 0; font-size: 13.5px; line-height: 1.6; color: rgba(251, 243, 234, 0.6); max-width: 32ch; }
.lb-footer h4 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lp-abricot);
  margin: 0 0 14px;
}
.lb-footer a {
  display: block;
  font-size: 13.5px;
  color: rgba(251, 243, 234, 0.7);
  text-decoration: none;
  padding: 5px 0;
  transition: color .2s;
}
.lb-footer a:hover { color: #fff; }
.lb-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(251, 243, 234, 0.12);
  font-size: 12px;
  color: rgba(251, 243, 234, 0.45);
  flex-wrap: wrap;
}

/* Confirmation modal ------------------------------------------------ */
.lb-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 40px);
}
.lb-modal__scrim { position: absolute; inset: 0; background: rgba(35, 31, 28, 0.55); backdrop-filter: blur(4px); }
.lb-modal__card {
  position: relative;
  background: var(--lp-paper);
  width: 100%;
  max-width: 480px;
  border-radius: 22px;
  box-shadow: 0 50px 100px -30px rgba(0, 0, 0, 0.5);
  padding: clamp(32px, 5vw, 48px);
  text-align: center;
}
.lb-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: var(--lp-muted);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: color .2s;
}
.lb-modal__close:hover { color: var(--lp-ruby); }
.lb-modal__badge {
  width: 58px;
  height: 58px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--lp-abricot);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--lp-ruby);
}
.lb-modal__title {
  font-family: var(--lp-ff-ui);
  font-weight: 600;
  font-size: clamp(23px, 3vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 auto;
  max-width: 22ch;
  color: var(--lp-ink);
}
.lb-modal__msg { font-size: 15px; line-height: 1.6; color: var(--lp-muted); margin: 16px auto 24px; max-width: 38ch; }
.lb-modal__recap {
  background: var(--lp-surface);
  border: 1px solid var(--lp-hair);
  border-radius: 14px;
  padding: 16px 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 26px;
}
.lb-modal__row { display: flex; justify-content: space-between; gap: 12px; font-size: 13px; }
.lb-modal__row span:first-child { color: var(--lp-muted); }
.lb-modal__row span:last-child { color: var(--lp-ink); font-weight: 500; }
.lb-modal__done {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  color: var(--lp-ink);
  background: transparent;
  border: 1px solid var(--lp-hair);
  border-radius: 999px;
  padding: 13px 26px;
  cursor: pointer;
  transition: border-color .2s, color .2s;
}
.lb-modal__done:hover { border-color: var(--lp-ink); color: var(--lp-ruby); }

/* Mise en œuvre / déploiement --------------------------------------- */
.lb-rollout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.lb-rollout__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.lb-rollout__step {
  display: flex;
  gap: 20px;
  padding: 0 0 26px;
  position: relative;
}
.lb-rollout__step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 40px;
  bottom: 0;
  width: 2px;
  background: var(--lp-hair);
}
.lb-rollout__num {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--lp-ruby);
  color: #fff;
  font-family: var(--lp-ff-ui);
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.lb-rollout__body { padding-top: 5px; }
.lb-rollout__body .lb-card-title { margin-bottom: 6px; }
.lb-rollout__benefit {
  position: sticky;
  top: 96px;
  background: var(--lp-ruby);
  color: #fff;
  border-radius: 20px;
  padding: clamp(26px, 3vw, 34px);
  box-shadow: 0 30px 60px -40px rgba(107, 68, 32, 0.7);
}
.lb-rollout__benefit .lb-eyebrow { color: var(--lp-abricot); margin: 14px 0 12px; }
.lb-rollout__benefit-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.lb-rollout__benefit-text {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
}

/* Footer legal links (harmonisé avec le site) */
.lb-footer__legal a {
  display: inline;
  padding: 0;
  color: rgba(251, 243, 234, 0.6);
}
.lb-footer__legal a:hover { color: #fff; }

/* Responsive -------------------------------------------------------- */
@media (max-width: 860px) {
  .lb-nav { display: none; }
  .lb-rollout { grid-template-columns: 1fr; }
  .lb-rollout__benefit { position: static; }
  .lb-contact__grid { grid-template-columns: 1fr; }
  .lb-footer__cols { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 560px) {
  .lb-form__grid { grid-template-columns: 1fr; }
  .lb-field--full, .lb-field { grid-column: 1 / -1; }
  .lb-footer__cols { grid-template-columns: 1fr; }
  .lb-header__inner { gap: 12px; }
  .lb-carousel__nav { width: 40px; height: 40px; }
  /* The hero repeats this CTA prominently, so free up the tight header row. */
  .lb-header__right > .lb-btn { display: none; }
  .lb-footer__bottom { justify-content: flex-start; }
}
