/**
 * HomeCrew — feuille de style des landing pages (slug "lp-*").
 * Reprend les tokens de homecrew.css ; aucune dépendance Webflow / GSAP.
 */

.hc-lp {
  background: var(--_color---normal-color--white);
  color: var(--_color---normal-color--black);
  font-family: var(--_base---font-family--your-body-font);
}

.hc-lp *,
.hc-lp *:before,
.hc-lp *:after { box-sizing: border-box; }

.hc-lp-container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.hc-lp-section { padding: 96px 0; }
.hc-lp-section--tight { padding: 68px 0; }
.hc-lp-section--soft { background: #fafafa; }

.hc-lp :where(h1, h2, h3, h4) {
  font-family: var(--_base---font-family--your-heading-font);
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--_color---normal-color--black);
  margin: 0;
}

.hc-lp :where(p) { margin: 0; color: var(--_color---accent-color--lite-text-secondary); }

.hc-lp-eyebrow {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .01em;
  color: var(--_color---accent-color--lite-text-tertiary);
  margin: 0 0 14px;
}

.hc-lp-h2 { font-size: 40px; line-height: 1.15; }
.hc-lp-lead { font-size: 18px; line-height: 1.6; margin-top: 16px; max-width: 62ch; }

/* ---------------------------------------------------------------- navbar */

.hc-lp-nav {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--_color---accent-color--lite-stroke-1);
}

.hc-lp-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 72px;
}

.hc-lp-logo { display: inline-flex; align-items: center; }
.hc-lp-logo img { height: 28px; width: auto; display: block; }

.hc-lp-nav-actions { display: flex; align-items: center; gap: 12px; }

.hc-lp-nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  color: var(--_color---normal-color--black);
  text-decoration: none;
}

.hc-lp-nav-phone svg { width: 18px; height: 18px; fill: currentColor; }

/* --------------------------------------------------------------- boutons */

.hc-lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--_base---bordar-radius--r-40);
  border: 1px solid var(--_color---normal-color--black);
  background: var(--_color---normal-color--black);
  color: var(--_color---normal-color--white);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .3s, color .3s, border-color .3s;
}

.hc-lp-btn:hover {
  background: var(--_color---normal-color--white);
  color: var(--_color---accent-color--vivid);
  border-color: var(--_color---accent-color--vivid);
}

.hc-lp-btn--ghost {
  background: var(--_color---normal-color--white);
  color: var(--_color---normal-color--black);
  border-color: var(--_color---accent-color--lite-stroke-1);
}

.hc-lp-btn--ghost:hover { border-color: var(--_color---normal-color--black); color: var(--_color---normal-color--black); }
.hc-lp-btn svg { width: 18px; height: 18px; fill: currentColor; }
.hc-lp-btn--sm { padding: 10px 20px; font-size: 15px; }

/* ------------------------------------------------------------------ hero */

.hc-lp-hero { padding: 68px 0 92px; }

.hc-lp-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  grid-template-areas:
    "texte formulaire"
    "texte image";
  grid-template-rows: auto 1fr;
  column-gap: 64px;
  row-gap: 0;
  align-items: start;
}

.hc-lp-hero-text { grid-area: texte; }
.hc-lp-form-card { grid-area: formulaire; }
.hc-lp-hero-media { grid-area: image; }

.hc-lp-hero h1 {
  font-size: clamp(34px, 3.5vw, 50px);
  line-height: 1.12;
}

.hc-lp-hero-lead {
  font-size: 18px;
  line-height: 1.62;
  margin-top: 22px;
  max-width: 48ch;
}

.hc-lp-hero-points {
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
  display: grid;
  gap: 15px;
}

.hc-lp-hero-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--_color---accent-color--lite-text-secondary);
}

.hc-lp-check {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--_color---accent-color--lite-bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hc-lp-check svg { width: 11px; height: 11px; fill: none; stroke: var(--_color---accent-color--vivid); stroke-width: 2.4; }

.hc-lp-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }

.hc-lp-hero-media {
  margin-top: 28px;
  border-radius: var(--_base---bordar-radius--r-xxl);
  overflow: hidden;
  border: 1px solid var(--_color---accent-color--lite-stroke-1);
}

.hc-lp-hero-media img { width: 100%; height: 260px; object-fit: cover; display: block; }

/* --------------------------------------------------------------- formulaire */

.hc-lp-card {
  background: var(--_color---normal-color--white);
  border: 1px solid var(--_color---accent-color--lite-stroke-1);
  border-radius: var(--_base---bordar-radius--r-xxl);
  padding: 34px 32px;
  box-shadow: 0 1px 2px rgba(15, 17, 15, .04), 0 12px 32px rgba(15, 17, 15, .06);
}

.hc-lp-form-card { position: sticky; top: 88px; }
.hc-lp-form-card h2 { font-size: 23px; line-height: 1.28; }
.hc-lp-form-card > p { font-size: 15px; line-height: 1.55; margin-top: 10px; }

.hc-lp-form-card .homecrew-fluent-form { margin-top: 18px; }
.hc-lp-form-card .homecrew-fluent-form .ff-el-input--label { margin-bottom: 4px; }
.hc-lp-form-card .homecrew-fluent-form .ff-el-input--label label { font-size: 14px; }
.hc-lp-form-card .homecrew-fluent-form .input-field { padding: 11px 14px; font-size: 15px; }
.hc-lp-form-card .homecrew-fluent-form textarea.input-field { height: 64px; }
.hc-lp-form-card .homecrew-fluent-form .ff-el-group { margin-bottom: 11px; }
.hc-lp-form-card .homecrew-fluent-form .ff-btn-submit,
.hc-lp-form-card .homecrew-fluent-form .contact-submit-button {
  align-self: stretch;
  width: 100%;
  margin-top: 4px;
  padding: 13px 24px;
  font-size: 16px;
}

.hc-lp-form-note {
  margin-top: 24px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--_color---accent-color--lite-text-tertiary);
}

.hc-lp-form-or {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0 18px;
  font-size: 13px;
  color: var(--_color---accent-color--lite-text-tertiary);
}

.hc-lp-form-or:before,
.hc-lp-form-or:after { content: ""; flex: 1; height: 1px; background: var(--_color---accent-color--lite-stroke-1); }

/* ------------------------------------------------------------ réassurance */

.hc-lp-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--_color---accent-color--lite-stroke-1);
  border-radius: var(--_base---bordar-radius--r-xl);
  overflow: hidden;
}

.hc-lp-trust-item { padding: 34px 30px 32px; border-right: 1px solid var(--_color---accent-color--lite-stroke-1); }
.hc-lp-trust-item:last-child { border-right: 0; }

.hc-lp-trust-icon {
  display: block;
  margin-bottom: 22px;
  color: var(--_color---normal-color--black);
}

.hc-lp-trust-icon svg {
  display: block;
  width: 30px;
  height: 30px;
  overflow: visible;
}

.hc-lp-trust-item h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -.005em;
}

.hc-lp-trust-item p {
  font-size: 14.5px;
  line-height: 1.6;
  margin-top: 10px;
  color: var(--_color---accent-color--lite-text-secondary-two);
}

/* ---------------------------------------------------------------- étapes */

.hc-lp-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }

.hc-lp-step {
  border: 1px solid var(--_color---accent-color--lite-stroke-1);
  border-radius: var(--_base---bordar-radius--r-xl);
  padding: 28px;
}

.hc-lp-step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--_color---accent-color--lite-bg);
  color: var(--_color---accent-color--vivid);
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.hc-lp-step h3 { font-size: 19px; line-height: 1.3; }
.hc-lp-step p { font-size: 16px; line-height: 1.55; margin-top: 10px; }

/* -------------------------------------------------------------- prestations */

.hc-lp-split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }

.hc-lp-list { list-style: none; margin: 28px 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; }

.hc-lp-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--_color---accent-color--lite-text-secondary);
}

.hc-lp-media {
  border-radius: var(--_base---bordar-radius--r-xxl);
  overflow: hidden;
  border: 1px solid var(--_color---accent-color--lite-stroke-1);
}

.hc-lp-media img { width: 100%; height: 100%; min-height: 380px; object-fit: cover; display: block; }

/* ---------------------------------------------------------------- offres */

.hc-lp-offers { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }

.hc-lp-offer { border: 1px solid var(--_color---accent-color--lite-stroke-1); border-radius: var(--_base---bordar-radius--r-xl); padding: 32px; background: var(--_color---normal-color--white); }
.hc-lp-offer h3 { font-size: 22px; line-height: 1.25; }
.hc-lp-offer > p { font-size: 16px; line-height: 1.55; margin-top: 12px; }

.hc-lp-offer-price {
  margin-top: 20px;
  font-size: 15px;
  font-weight: 500;
  color: var(--_color---normal-color--black);
  padding: 10px 16px;
  border-radius: var(--_base---bordar-radius--pill);
  background: var(--_color---accent-color--lite-bg);
  display: inline-block;
}

/* -------------------------------------------------------------- quartiers */

.hc-lp-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }

.hc-lp-pill {
  padding: 9px 18px;
  border-radius: var(--_base---bordar-radius--pill);
  border: 1px solid var(--_color---accent-color--lite-stroke-1);
  font-size: 15px;
  color: var(--_color---accent-color--lite-text-secondary);
}

/* ------------------------------------------------------------------- faq */

.hc-lp-faq { margin-top: 40px; border-top: 1px solid var(--_color---accent-color--lite-stroke-1); }

.hc-lp-faq details { border-bottom: 1px solid var(--_color---accent-color--lite-stroke-1); }

.hc-lp-faq summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 40px 24px 0;
  position: relative;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--_color---normal-color--black);
}

.hc-lp-faq summary::-webkit-details-marker { display: none; }

.hc-lp-faq summary:after {
  content: "";
  position: absolute;
  right: 6px;
  top: 50%;
  width: 11px;
  height: 11px;
  margin-top: -7px;
  border-right: 2px solid var(--_color---accent-color--lite-text-tertiary);
  border-bottom: 2px solid var(--_color---accent-color--lite-text-tertiary);
  transform: rotate(45deg);
  transition: transform .25s;
}

.hc-lp-faq details[open] summary:after { transform: rotate(-135deg); margin-top: -2px; }
.hc-lp-faq details p { padding: 0 40px 24px 0; font-size: 16px; line-height: 1.6; }

/* ------------------------------------------------------------------- cta */

.hc-lp-cta-band {
  background: var(--_color---accent-color--dark-bg);
  border-radius: var(--_base---bordar-radius--r-32);
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.hc-lp-cta-band h2 { color: var(--_color---normal-color--white); font-size: 34px; line-height: 1.2; max-width: 20ch; }
.hc-lp-cta-band p { color: var(--_color---accent-color--dark-text-secondary); font-size: 17px; line-height: 1.55; margin-top: 14px; max-width: 46ch; }
.hc-lp-cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.hc-lp-cta-band .hc-lp-btn {
  background: var(--_color---normal-color--white);
  color: var(--_color---normal-color--black);
  border-color: var(--_color---normal-color--white);
}

.hc-lp-cta-band .hc-lp-btn:hover { background: transparent; color: var(--_color---normal-color--white); }

.hc-lp-cta-band .hc-lp-btn--ghost { background: transparent; color: var(--_color---normal-color--white); border-color: var(--_color---accent-color--dark-stroke); }
.hc-lp-cta-band .hc-lp-btn--ghost:hover { border-color: var(--_color---normal-color--white); }

/* ---------------------------------------------------------------- footer */

.hc-lp-footer { border-top: 1px solid var(--_color---accent-color--lite-stroke-1); padding: 48px 0; }

.hc-lp-footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.hc-lp-footer-inner img { height: 24px; width: auto; filter: invert(1); }
.hc-lp-footer p { font-size: 14px; color: var(--_color---accent-color--lite-text-tertiary); }
.hc-lp-footer a { color: var(--_color---accent-color--lite-text-secondary); text-decoration: none; }

/* ------------------------------------------------------- barre mobile fixe */

.hc-lp-sticky {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--_color---accent-color--lite-stroke-1);
  gap: 10px;
}

.hc-lp-sticky .hc-lp-btn { flex: 1; padding: 13px 16px; font-size: 15px; }

/* ------------------------------------------------------------ responsive */

@media (max-width: 991px) {
  .hc-lp-section { padding: 64px 0; }
  .hc-lp-hero { padding: 40px 0 56px; }
  .hc-lp-hero-grid { display: flex; flex-direction: column; align-items: stretch; gap: 32px; }
  .hc-lp-hero h1 { font-size: 44px; }
  .hc-lp-form-card { position: static; }
  .hc-lp-h2 { font-size: 34px; }
  .hc-lp-trust { grid-template-columns: 1fr 1fr; }
  .hc-lp-trust-item:nth-child(2n) { border-right: 0; }
  .hc-lp-trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--_color---accent-color--lite-stroke-1); }
  .hc-lp-steps { grid-template-columns: 1fr; }
  .hc-lp-split { grid-template-columns: 1fr; gap: 40px; }
  .hc-lp-media img { min-height: 280px; }
  .hc-lp-offers { grid-template-columns: 1fr; }
  .hc-lp-cta-band { padding: 40px; }
  .hc-lp-cta-band h2 { font-size: 28px; }
}

@media (max-width: 767px) {
  .hc-lp-container { padding: 0 20px; }
  .hc-lp-section { padding: 48px 0; }
  .hc-lp-hero { padding: 34px 0 52px; }
  .hc-lp-hero h1 { font-size: 34px; }
  .hc-lp-hero-lead { font-size: 16.5px; margin-top: 18px; }
  .hc-lp-hero-grid { gap: 30px; }
  .hc-lp-hero-media { margin-top: 0; }
  .hc-lp-hero-media img { height: 180px; }
  .hc-lp-hero-points { margin-top: 24px; }
  .hc-lp-hero-actions { display: none; }
  .hc-lp-card { padding: 26px 22px; }
  .hc-lp-h2 { font-size: 28px; }
  .hc-lp-trust { grid-template-columns: 1fr; }
  .hc-lp-trust-item { border-right: 0; border-bottom: 1px solid var(--_color---accent-color--lite-stroke-1); }
  .hc-lp-trust-item:last-child { border-bottom: 0; }
  .hc-lp-list { grid-template-columns: 1fr; }
  .hc-lp-cta-band { padding: 32px 24px; }
  .hc-lp-cta-band h2 { font-size: 26px; }
  .hc-lp-cta-actions { width: 100%; }
  .hc-lp-cta-actions .hc-lp-btn { flex: 1; }
  .hc-lp-nav-phone span { display: none; }
  .hc-lp-sticky { display: flex; }
  .hc-lp-footer { padding-bottom: 120px; }
}

/* Menus déroulants : même traitement que les autres champs du site. */
.hc-lp-form-card .homecrew-fluent-form select.input-field {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  padding-right: 46px;
  font: inherit;
  color: inherit;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8' fill='none'%3E%3Cpath d='M1 1L7 7L13 1' stroke='%23353635' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 14px 8px;
}

.hc-lp-form-card .homecrew-fluent-form select.input-field::-ms-expand { display: none; }
.hc-lp-form-card .homecrew-fluent-form select.input-field:invalid,
.hc-lp-form-card .homecrew-fluent-form select.input-field option[value=""] { color: var(--_color---accent-color--lite-text-tertiary); }

/* ============================================================ navigation douce */

html { scroll-behavior: smooth; }
.hc-lp [id] { scroll-margin-top: 88px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

.hc-lp-btn--full { width: 100%; }

/* ------------------------------------------------------------- la sélection */

.hc-lp-checks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.hc-lp-check-card {
  background: var(--_color---normal-color--white);
  border: 1px solid var(--_color---accent-color--lite-stroke-1);
  border-radius: var(--_base---bordar-radius--r-xl);
  padding: 28px 26px;
  transition: border-color .3s, box-shadow .3s;
}

.hc-lp-check-card:hover {
  border-color: var(--_color---accent-color--lite-vivid);
  box-shadow: 0 1px 2px rgba(15, 17, 15, .03), 0 10px 26px rgba(15, 17, 15, .05);
}

.hc-lp-check-card .hc-lp-trust-icon { margin-bottom: 18px; color: var(--_color---accent-color--vivid); }
.hc-lp-check-card .hc-lp-trust-icon svg { width: 26px; height: 26px; }
.hc-lp-check-card h3 { font-size: 17px; font-weight: 500; line-height: 1.3; }
.hc-lp-check-card p { font-size: 14.5px; line-height: 1.6; margin-top: 9px; color: var(--_color---accent-color--lite-text-secondary-two); }

/* ---------------------------------------------------------- rappel d'action */

.hc-lp-cta-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding: 28px 32px;
  border-radius: var(--_base---bordar-radius--r-xxl);
  background: var(--_color---accent-color--lite-bg);
  border: 1px solid var(--_color---accent-color--lite-vivid);
}

p.hc-lp-cta-inline-title {
  font-family: var(--_base---font-family--your-heading-font);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -.01em;
  color: var(--_color---normal-color--black);
}

.hc-lp-cta-inline p:last-child { font-size: 15px; line-height: 1.55; margin-top: 6px; }
.hc-lp-cta-inline .hc-lp-btn { flex: 0 0 auto; }

/* ------------------------------------------------------------- les critères */

.hc-lp-criteria {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.hc-lp-criterion {
  border: 1px solid var(--_color---accent-color--lite-stroke-1);
  border-radius: var(--_base---bordar-radius--r-xl);
  padding: 30px 28px;
  background: var(--_color---normal-color--white);
}

.hc-lp-badge {
  display: inline-block;
  margin-bottom: 18px;
  padding: 6px 14px;
  border-radius: var(--_base---bordar-radius--pill);
  background: var(--_color---accent-color--lite-bg);
  color: var(--_color---accent-color--vivid);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .01em;
}

.hc-lp-criterion h3 { font-size: 19px; line-height: 1.3; }
.hc-lp-criterion p { font-size: 15.5px; line-height: 1.6; margin-top: 10px; }

/* -------------------------------------------------------------- les rythmes */

.hc-lp-rhythms {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.hc-lp-rhythm {
  border: 1px solid var(--_color---accent-color--lite-stroke-1);
  border-radius: var(--_base---bordar-radius--r-xl);
  padding: 30px 28px;
  background: var(--_color---normal-color--white);
}

.hc-lp-rhythm .hc-lp-trust-icon { margin-bottom: 20px; color: var(--_color---accent-color--vivid); }
.hc-lp-rhythm .hc-lp-trust-icon svg { width: 28px; height: 28px; }
.hc-lp-rhythm h3 { font-size: 18px; font-weight: 500; line-height: 1.3; }
.hc-lp-rhythm p { font-size: 15px; line-height: 1.6; margin-top: 10px; color: var(--_color---accent-color--lite-text-secondary-two); }

/* -------------------------------------------------- adaptations petits écrans */

@media (max-width: 991px) {
  .hc-lp-checks { grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 36px; }
  .hc-lp-criteria,
  .hc-lp-rhythms { grid-template-columns: 1fr; gap: 16px; margin-top: 36px; }
  .hc-lp-cta-inline { margin-top: 36px; padding: 26px; }
}

@media (max-width: 767px) {
  .hc-lp-checks { grid-template-columns: 1fr; gap: 12px; margin-top: 28px; }
  .hc-lp-check-card { padding: 22px 20px; }
  .hc-lp-check-card .hc-lp-trust-icon { margin-bottom: 14px; }
  .hc-lp-criteria,
  .hc-lp-rhythms { gap: 12px; margin-top: 28px; }
  .hc-lp-criterion,
  .hc-lp-rhythm { padding: 24px 20px; }
  .hc-lp-criterion h3 { font-size: 18px; }
  .hc-lp-cta-inline {
    margin-top: 28px;
    padding: 24px 20px;
    gap: 18px;
    flex-direction: column;
    align-items: flex-start;
  }
  .hc-lp-cta-inline .hc-lp-btn { width: 100%; }
  .hc-lp-lead { font-size: 16.5px; }
}

/* ============================================ section sombre : les contrôles */

.hc-lp-section--dark {
  background: var(--_color---accent-color--dark-bg);
  color: var(--_color---normal-color--white);
}

.hc-lp-section--dark h2,
.hc-lp-section--dark h3 { color: var(--_color---normal-color--white); }
.hc-lp-section--dark .hc-lp-eyebrow { color: var(--_color---accent-color--dark-text-teritary); }
.hc-lp-section--dark .hc-lp-lead { color: var(--_color---accent-color--dark-text-secondary); }

.hc-lp-shield {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
}

.hc-lp-shield-note {
  margin-top: 28px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--_color---accent-color--dark-text-teritary);
}

.hc-lp-shield-card {
  border: 1px solid var(--_color---accent-color--dark-stroke);
  border-radius: var(--_base---bordar-radius--r-xxl);
  padding: 34px 32px;
  background: rgba(255, 255, 255, .025);
  transition: border-color .35s, background-color .35s;
}

.hc-lp-shield-card:hover {
  border-color: rgba(127, 180, 255, .45);
  background: rgba(255, 255, 255, .045);
}

.hc-lp-shield-card .hc-lp-trust-icon { margin-bottom: 22px; color: #7fb4ff; }
.hc-lp-shield-card .hc-lp-trust-icon svg { width: 34px; height: 34px; }
.hc-lp-shield-card h3 { font-size: 21px; font-weight: 600; line-height: 1.3; }
.hc-lp-shield-card p {
  font-size: 15.5px;
  line-height: 1.65;
  margin-top: 12px;
  color: var(--_color---accent-color--dark-text-secondary);
}

/* ---------------------------------------------------------------- bande photo */

.hc-lp-band { padding: 0 0 88px; }

.hc-lp-band-inner {
  position: relative;
  border-radius: var(--_base---bordar-radius--r-32);
  overflow: hidden;
}

.hc-lp-band-inner img {
  display: block;
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.hc-lp-band-text {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 90px 40px 36px;
  background: linear-gradient(to top, rgba(15, 17, 15, .94) 0%, rgba(15, 17, 15, .86) 30%, rgba(15, 17, 15, .55) 62%, rgba(15, 17, 15, 0) 100%);
}

p.hc-lp-band-quote {
  font-family: var(--_base---font-family--your-heading-font);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -.015em;
  color: var(--_color---normal-color--white);
  max-width: 24ch;
}

.hc-lp-band-text p:last-child {
  font-size: 16px;
  line-height: 1.55;
  margin-top: 10px;
  color: rgba(255, 255, 255, .82);
}

/* ------------------------------------------------ apparition au défilement */

.hc-lp-reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .65s cubic-bezier(.22, .61, .36, 1), transform .65s cubic-bezier(.22, .61, .36, 1);
  will-change: opacity, transform;
}

.hc-lp-reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .hc-lp-reveal { opacity: 1; transform: none; transition: none; }
}

/* Légers mouvements au survol, pour que la page réponde sous la souris. */
.hc-lp-criterion,
.hc-lp-rhythm,
.hc-lp-offer {
  transition: border-color .3s, box-shadow .3s, transform .3s;
}

.hc-lp-criterion:hover,
.hc-lp-rhythm:hover,
.hc-lp-offer:hover {
  border-color: var(--_color---accent-color--lite-vivid);
  box-shadow: 0 1px 2px rgba(15, 17, 15, .03), 0 12px 30px rgba(15, 17, 15, .06);
  transform: translateY(-2px);
}

.hc-lp-pill { transition: border-color .3s, color .3s; }
.hc-lp-pill:hover { border-color: var(--_color---accent-color--vivid); color: var(--_color---normal-color--black); }

.hc-lp-band-inner img { transition: transform 1.2s cubic-bezier(.22, .61, .36, 1); }
.hc-lp-band-inner:hover img { transform: scale(1.03); }

/* -------------------------------------------------- adaptations petits écrans */

@media (max-width: 991px) {
  .hc-lp-shield { grid-template-columns: 1fr; gap: 16px; margin-top: 34px; }
  .hc-lp-shield-note { margin-top: 22px; }
  .hc-lp-band { padding-bottom: 64px; }
  .hc-lp-band-inner img { height: 320px; }
  p.hc-lp-band-quote { font-size: 26px; }
}

@media (max-width: 767px) {
  .hc-lp-shield-card { padding: 26px 22px; }
  .hc-lp-shield-card h3 { font-size: 19px; }
  .hc-lp-band { padding-bottom: 48px; }
  .hc-lp-band-inner img { height: 280px; }
  .hc-lp-band-text { padding: 64px 22px 24px; }
  p.hc-lp-band-quote { font-size: 22px; max-width: none; }
  .hc-lp-band-text p:last-child { font-size: 15px; }
  .hc-lp-criterion:hover,
  .hc-lp-rhythm:hover,
  .hc-lp-offer:hover { transform: none; }
}

/* ==================================================================== photos */

.hc-lp-figure {
  margin: 44px 0 0;
  border-radius: var(--_base---bordar-radius--r-xxl);
  overflow: hidden;
  border: 1px solid var(--_color---accent-color--lite-stroke-1);
}

.hc-lp-figure img {
  display: block;
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center 38%;
}

/* Cartes de rythme illustrées : la photo porte le pictogramme. */
.hc-lp-rhythm { padding: 0; overflow: hidden; }

.hc-lp-rhythm-media {
  position: relative;
  background: #f2f4f3;
}

.hc-lp-rhythm-media img {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.hc-lp-rhythm-media .hc-lp-trust-icon {
  position: absolute;
  left: 20px;
  bottom: -22px;
  margin: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--_color---normal-color--white);
  border: 1px solid var(--_color---accent-color--lite-stroke-1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--_color---accent-color--vivid);
  box-shadow: 0 6px 18px rgba(15, 17, 15, .08);
}

.hc-lp-rhythm-media .hc-lp-trust-icon svg { width: 22px; height: 22px; }
.hc-lp-rhythm-body { padding: 36px 26px 28px; }

/* Les quartiers, adossés à une vue de la ville. */
.hc-lp-places {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 48px;
  align-items: center;
}

.hc-lp-places-media {
  border-radius: var(--_base---bordar-radius--r-xxl);
  overflow: hidden;
  border: 1px solid var(--_color---accent-color--lite-stroke-1);
}

.hc-lp-places-media img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
}

@media (max-width: 991px) {
  .hc-lp-figure { margin-top: 34px; }
  .hc-lp-figure img { height: 260px; }
  .hc-lp-places { grid-template-columns: 1fr; gap: 32px; }
  .hc-lp-places-media img { height: 280px; }
}

@media (max-width: 767px) {
  .hc-lp-figure img { height: 210px; }
  .hc-lp-rhythm-media img { height: 170px; }
  .hc-lp-rhythm-body { padding: 32px 20px 24px; }
  .hc-lp-places-media img { height: 220px; }
}

/* Ouverture de section : le propos à gauche, la photo à droite. */
.hc-lp-intro-split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}

.hc-lp-intro-media {
  border-radius: var(--_base---bordar-radius--r-xxl);
  overflow: hidden;
  border: 1px solid var(--_color---accent-color--lite-stroke-1);
}

.hc-lp-intro-media img {
  display: block;
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.hc-lp-intro-split .hc-lp-lead { margin-bottom: 0; }

@media (max-width: 991px) {
  .hc-lp-intro-split { grid-template-columns: 1fr; gap: 32px; }
  .hc-lp-intro-media img { height: 280px; }
}

@media (max-width: 767px) {
  .hc-lp-intro-split { gap: 26px; }
  .hc-lp-intro-media img { height: 220px; }
}

/* Bouton WhatsApp : un liseré fin à la couleur de la marque, rien de plus. */
.hc-lp-btn--whatsapp {
  border-color: #25d366;
  color: var(--_color---normal-color--black);
}

.hc-lp-btn--whatsapp svg {
  width: 19px;
  height: 19px;
  fill: #25d366;
}

.hc-lp-btn--whatsapp:hover {
  border-color: #1da851;
  background: rgba(37, 211, 102, .06);
  color: var(--_color---normal-color--black);
}

/* ======================================== parcours de demande en quatre étapes */

.hc-lp-form-source {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.hc-lp-flow-start { margin-top: 26px; }

.hc-lp-flow-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
  min-height: 24px;
}

.hc-lp-flow-back {
  border: 0;
  background: none;
  padding: 0;
  font: inherit;
  font-size: 14px;
  color: var(--_color---accent-color--lite-text-tertiary);
  cursor: pointer;
  transition: color .25s;
}

.hc-lp-flow-back:before { content: "\2190"; margin-right: 7px; }
.hc-lp-flow-back:hover { color: var(--_color---normal-color--black); }

.hc-lp-flow-count {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--_color---accent-color--vivid);
}

.hc-lp-flow-bar {
  height: 3px;
  border-radius: 2px;
  background: var(--_color---accent-color--lite-bg);
  overflow: hidden;
  margin-bottom: 26px;
}

.hc-lp-flow-bar span {
  display: block;
  height: 100%;
  width: 25%;
  border-radius: 2px;
  background: var(--_color---accent-color--vivid);
  transition: width .45s cubic-bezier(.22, .61, .36, 1);
}

.hc-lp-flow-q {
  font-family: var(--_base---font-family--your-heading-font);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.32;
  letter-spacing: -.01em;
  color: var(--_color---normal-color--black);
  margin-bottom: 22px;
}

.hc-lp-flow-q--sub { font-size: 17px; margin-top: 0; margin-bottom: 18px; }

.hc-lp-flow-sub {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--_color---accent-color--lite-stroke-1);
}

.hc-lp-flow-field { margin-bottom: 14px; }

.hc-lp-flow-field label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  color: var(--_color---accent-color--lite-text-secondary);
}

.hc-lp-flow-field input {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  font: inherit;
  font-size: 16px;
  color: var(--_color---normal-color--black);
  background: var(--_color---normal-color--white);
  border: 1px solid var(--_color---accent-color--lite-stroke-1);
  border-radius: var(--_base---bordar-radius--r-10);
  transition: border-color .25s;
}

.hc-lp-flow-field input:focus { outline: 0; border-color: var(--_color---accent-color--vivid); }
.hc-lp-flow-field input::placeholder { color: var(--_color---accent-color--lite-text-tertiary); }

.hc-lp-flow-error {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.45;
  color: #b42318;
}

.hc-lp-flow-step .hc-lp-btn { margin-top: 8px; }

/* Les réponses proposées */

.hc-lp-flow-pills { display: flex; flex-wrap: wrap; gap: 9px; }

.hc-lp-flow-pill {
  padding: 9px 16px;
  font: inherit;
  font-size: 14.5px;
  color: var(--_color---accent-color--lite-text-secondary);
  background: var(--_color---normal-color--white);
  border: 1px solid var(--_color---accent-color--lite-stroke-1);
  border-radius: var(--_base---bordar-radius--pill);
  cursor: pointer;
  transition: border-color .25s, color .25s, background-color .25s;
}

.hc-lp-flow-pill:hover { border-color: var(--_color---accent-color--vivid); color: var(--_color---normal-color--black); }

.hc-lp-flow-pill.est-choisi {
  border-color: var(--_color---accent-color--vivid);
  background: var(--_color---accent-color--lite-bg);
  color: var(--_color---accent-color--vivid);
  font-weight: 500;
}

.hc-lp-flow-cards { display: grid; gap: 10px; }

.hc-lp-flow-choice {
  display: block;
  width: 100%;
  text-align: left;
  padding: 16px 18px;
  font: inherit;
  font-size: 16px;
  font-weight: 500;
  color: var(--_color---normal-color--black);
  background: var(--_color---normal-color--white);
  border: 1px solid var(--_color---accent-color--lite-stroke-1);
  border-radius: var(--_base---bordar-radius--r-x);
  cursor: pointer;
  transition: border-color .25s, background-color .25s, transform .25s;
}

.hc-lp-flow-choice span {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  font-weight: 400;
  color: var(--_color---accent-color--lite-text-tertiary);
}

.hc-lp-flow-choice:hover { border-color: var(--_color---accent-color--vivid); transform: translateY(-1px); }

.hc-lp-flow-choice.est-choisi {
  border-color: var(--_color---accent-color--vivid);
  background: var(--_color---accent-color--lite-bg);
}

.hc-lp-flow-state {
  font-size: 15px;
  color: var(--_color---accent-color--lite-text-secondary);
  text-align: center;
  padding: 24px 0 8px;
}

/* L'écran de fin */

.hc-lp-flow-done { text-align: center; padding: 8px 0; }

.hc-lp-flow-done-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--_color---accent-color--lite-bg);
  color: var(--_color---accent-color--vivid);
}

.hc-lp-flow-done-mark svg { width: 26px; height: 26px; }
.hc-lp-flow-done h2 { font-size: 22px; }
.hc-lp-flow-done p { font-size: 15px; line-height: 1.6; margin-top: 10px; margin-bottom: 22px; }

@media (max-width: 767px) {
  .hc-lp-flow-q { font-size: 19px; margin-bottom: 18px; }
  .hc-lp-flow-pill { font-size: 14px; padding: 9px 14px; }
  .hc-lp-flow-choice { padding: 15px 16px; }
}
