/* Comment ça marche — fidèle maquettes desktop 1440 / mobile 375 */

/* Empêche le défilement horizontal de toute la page (body / #AllSite) */
html:has(.static-page--how),
body:has(.static-page--how) {
  max-width: 100%;
  overflow-x: hidden;
}

body:has(.static-page--how) #AllSite {
  max-width: 100%;
  overflow-x: hidden;
  width: 100%;
}

.static-page.static-page--how {
  --how-brand: #1d3253;
  --how-text: #262626;
  --how-muted: #404040;
  --how-muted-2: #5f6368;
  --how-title-card: #202124;
  --how-cream-from: #fdfcf2;
  --how-cream-to: #faf5f0;
  --how-surface: #faf5f0;
  --how-video-bg: #e9f0ec;
  --how-warn-bg: #fdf7e2;
  --how-warn-border: #f2e6c2;
  --how-info-bg: #e8f0fe;
  --how-info-border: rgba(29, 50, 84, 0.25);
  --how-link-green: #00c951;
  --how-cta-bg: #ecf1f8;
  --how-cta-border: #c1cad7;
  --how-card-border: #e5e5e5;
  --how-radius-xl: 32px;
  --how-radius-lg: 24px;
  --how-radius-md: 20px;
  background: #fff;
  box-sizing: border-box;
  color: var(--how-text);
  font-family: Roboto, system-ui, sans-serif;
  hyphens: none;
  max-width: 100%;
  overflow-x: hidden;
  overflow-wrap: normal;
  padding: 0;
  width: 100%;
  word-break: normal;
}

/*
 * Paddings section Figma (valeurs en dur, pas de variable) :
 * - Hero / Steps / Video / Nego / Impact : mobile 64 · desktop 120
 * - CTA (dernière) : mobile 80 · desktop 80
 */

/* Annule listes / césures de static-page.css */
.static-page.static-page--how ul,
.static-page.static-page--how ol {
  list-style: none !important;
  margin: 0;
  max-width: none;
  padding: 0;
}

.static-page.static-page--how li {
  list-style: none !important;
  margin: 0;
  padding: 0;
}

.static-page.static-page--how li::marker {
  content: "";
  display: none;
}

.static-page.static-page--how h1,
.static-page.static-page--how h2,
.static-page.static-page--how h3,
.static-page.static-page--how h4,
.static-page.static-page--how p {
  hyphens: none;
  letter-spacing: normal;
  max-width: none;
  overflow-wrap: normal;
  word-break: normal;
}

.static-page.static-page--how p {
  margin: 0;
}

.static-page--how .how-inner {
  box-sizing: border-box;
  margin: 0 auto;
  max-width: min(1120px, 100%);
  min-width: 0;
  /* Mobile Figma 393 : contenu 350 → marges 21.5px */
  padding: 0 21.5px;
  width: 100%;
}

/* Desktop Figma : contenu 1120 centré (160+1120+160), sans pad latéral */
@media (min-width: 1024px) {
  .static-page--how .how-inner {
    padding: 0;
  }
}

.static-page--how .visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.static-page--how a[style] {
  color: inherit !important;
  font-weight: inherit !important;
}

/* ——— Hero (Figma 438:753 desktop / 438:976 mobile) ——— */
.how-hero {
  background: linear-gradient(180deg, var(--how-cream-from) 0%, var(--how-cream-to) 100%);
  /* Mobile : padding section 64px */
  padding: 64px 0;
  text-align: center;
}

@media (min-width: 1024px) {
  .how-hero {
    /* Desktop : py 120px */
    padding: 120px 0;
  }
}

/* Spécificité > .static-page h1 */
.static-page.static-page--how .how-hero__title {
  color: var(--how-brand);
  font-family: Quicksand, sans-serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: normal;
  line-height: normal;
  /* Gap titre → chips = 32px (Figma desk + mob) */
  margin: 0 auto 32px;
  max-width: 1120px;
}

@media (min-width: 1024px) {
  .static-page.static-page--how .how-hero__title {
    font-size: 56px;
  }
}

.how-hero__chips {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  /* Gap chips = 12px (Figma) */
  gap: 12px;
  justify-content: center;
  margin: 0 auto;
  max-width: 100%;
  padding: 0;
  width: 100%;
}

/* Rangée chips uniquement en desktop maquette */
@media (min-width: 1024px) {
  .how-hero__chips {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }
}

.how-hero__chip {
  align-items: center;
  background: #fff;
  border: 0;
  border-radius: 50px;
  /* Mobile Figma : shadow douce */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
  color: #404040;
  display: inline-flex;
  font-family: Roboto, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  max-width: 100%;
  padding: 8px 16px;
  white-space: nowrap;
}

/* ——— Steps (Figma desktop 438:765 / mobile 438:988) ——— */
.how-steps {
  background: #fff;
  /* Mobile Figma : py 64 */
  padding: 64px 0;
  text-align: center;
}

@media (min-width: 1024px) {
  .how-steps {
    /* Desktop Figma : py 120 */
    padding: 120px 0;
  }
}

.static-page.static-page--how .how-steps .how-inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  /* Figma : gap 64 entre intro et bloc étapes */
  gap: 64px;
}

.static-page.static-page--how .how-steps__intro-block {
  align-items: center;
  display: flex;
  flex-direction: column;
  /* Figma : gap 16 titre → intro */
  gap: 16px;
  width: 100%;
}

.static-page.static-page--how .how-steps__body {
  align-items: center;
  display: flex;
  flex-direction: column;
  /* Figma : gap 32 sous-titre → liste */
  gap: 32px;
  width: 100%;
}

.static-page.static-page--how .how-steps__title {
  color: var(--how-brand);
  font-family: Quicksand, sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: normal;
  line-height: normal;
  margin: 0;
  text-align: center;
}

@media (min-width: 1024px) {
  .static-page.static-page--how .how-steps__title {
    font-size: 40px;
  }
}

.static-page.static-page--how .how-steps__intro {
  color: var(--how-text);
  font-size: 18px;
  letter-spacing: normal;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 800px;
  text-align: center;
}

.static-page.static-page--how .how-steps__intro a,
.static-page.static-page--how .how-steps__intro a[style] {
  color: var(--how-brand) !important;
  font-family: Quicksand, sans-serif;
  font-weight: 700 !important;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.static-page.static-page--how .how-steps__subtitle {
  color: var(--how-brand);
  font-family: Quicksand, sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: normal;
  line-height: normal;
  margin: 0;
  text-align: center;
  width: 100%;
}

.static-page.static-page--how .how-steps__list {
  display: flex;
  flex-direction: column;
  /* Mobile Figma : gap 24 entre étapes */
  gap: 24px;
  list-style: none !important;
  margin: 0 auto;
  padding: 0;
  text-align: left;
  width: 100%;
}

@media (min-width: 1024px) {
  .static-page.static-page--how .how-steps__list {
    align-items: flex-start;
    flex-direction: row;
    gap: 0;
    justify-content: space-between;
    text-align: center;
  }
}

.static-page.static-page--how .how-steps__item {
  align-items: flex-start;
  display: flex;
  flex-direction: row;
  /* Figma : gap 20 cercle → texte */
  gap: 20px;
  list-style: none !important;
  margin: 0;
  padding: 0;
  text-align: left;
  transition: transform 0.22s ease;
}

@media (min-width: 1024px) {
  .static-page.static-page--how .how-steps__item {
    align-items: center;
    flex: 0 0 200px;
    flex-direction: column;
    gap: 20px;
    max-width: 200px;
    min-width: 0;
    text-align: center;
    width: 200px;
  }

  .static-page.static-page--how .how-steps__item:hover,
  .static-page.static-page--how .how-steps__item:focus-within,
  .how-steps.how-reveal.is-visible .how-steps__item:hover,
  .how-steps.how-reveal.is-visible .how-steps__item:focus-within {
    transform: translateY(-4px);
  }
}

.static-page.static-page--how .how-steps__num {
  align-items: center;
  background: var(--how-brand);
  border-radius: 24px;
  color: #fff;
  display: flex;
  flex-shrink: 0;
  font-family: Quicksand, sans-serif;
  font-size: 20px;
  font-weight: 700;
  height: 48px;
  justify-content: center;
  transition: box-shadow 0.22s ease, transform 0.22s ease;
  width: 48px;
}

@media (min-width: 1024px) {
  .static-page.static-page--how .how-steps__item:hover .how-steps__num,
  .static-page.static-page--how .how-steps__item:focus-within .how-steps__num {
    box-shadow: 0 8px 20px rgba(29, 50, 84, 0.22);
    transform: scale(1.06);
  }
}

.static-page.static-page--how .how-steps__content {
  display: flex;
  flex-direction: column;
  /* Figma : gap 8 label → texte */
  gap: 8px;
  min-width: 0;
  width: 100%;
}

@media (min-width: 1024px) {
  .static-page.static-page--how .how-steps__content {
    align-items: center;
    text-align: center;
  }
}

.static-page.static-page--how .how-steps__label {
  color: var(--how-brand);
  font-family: Quicksand, sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: normal;
  line-height: normal;
  margin: 0;
}

@media (min-width: 1024px) {
  .static-page.static-page--how .how-steps__label {
    text-align: center;
    width: 100%;
  }
}

.static-page.static-page--how .how-steps__text {
  color: var(--how-muted);
  font-size: 14px;
  letter-spacing: normal;
  line-height: 1.5;
  margin: 0;
  max-width: none;
}

@media (min-width: 1024px) {
  .static-page.static-page--how .how-steps__text {
    text-align: center;
    width: 100%;
  }
}

.static-page.static-page--how .how-steps__text a,
.static-page.static-page--how .how-steps__text a[style] {
  color: var(--how-muted) !important;
  font-weight: 700 !important;
  text-decoration: none !important;
}

.static-page.static-page--how .how-steps__text a:hover,
.static-page.static-page--how .how-steps__text a:focus-visible {
  color: var(--how-brand) !important;
  text-decoration: underline !important;
  text-underline-offset: 2px;
}

/* ——— Vidéo (Figma : desktop 1120×630 / mobile 350×197, 16:9) ——— */
.how-video {
  background: var(--how-video-bg);
  box-sizing: border-box;
  max-width: 100%;
  padding: 64px 0;
  width: 100%;
}

@media (min-width: 1024px) {
  .how-video {
    padding: 120px 0;
  }
}

.static-page.static-page--how .how-video .how-inner {
  box-sizing: border-box;
  max-width: min(1120px, 100%);
  padding: 0 21.5px;
  width: 100%;
}

@media (min-width: 1024px) {
  .static-page.static-page--how .how-video .how-inner {
    padding: 0;
  }
}

.static-page.static-page--how .how-video__player {
  background: #111;
  border-radius: var(--how-radius-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
  display: block;
  margin: 0;
  max-width: 1120px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.static-page.static-page--how .how-video__el {
  aspect-ratio: 16 / 9;
  background: #111;
  border: 0;
  border-radius: var(--how-radius-lg);
  display: block;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  vertical-align: middle;
  width: 100%;
}
/* ——— Négociation (Figma desktop 438:810 / mobile 438:1033) ——— */
.how-nego {
  background: #fff;
  overflow-x: clip;
  /* Mobile Figma : py 64 */
  padding: 64px 0;
}

@media (min-width: 1024px) {
  .how-nego {
    /* Desktop Figma : py 120 */
    padding: 120px 0;
  }
}

.how-nego .how-inner {
  align-items: stretch;
  display: flex;
  flex-direction: column;
  /* Mobile Figma : gap 40 entre top / cartes / info */
  gap: 40px;
  max-width: 1120px;
  min-width: 0;
  overflow-x: clip;
  width: 100%;
}

@media (min-width: 1024px) {
  .how-nego .how-inner {
    /* Desktop Figma : gap 80 */
    gap: 80px;
  }
}

.static-page.static-page--how .how-nego__top {
  display: flex;
  flex-direction: column;
  /* Figma : gap 32 copy → warn */
  gap: 32px;
  width: 100%;
}

/* Texte intro : pleine largeur 1120 */
.static-page.static-page--how .how-nego__copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  max-width: 100%;
  text-align: left;
  width: 100%;
}

.static-page.static-page--how .how-nego__lead {
  color: var(--how-text);
  font-size: 18px;
  letter-spacing: normal;
  line-height: 1.6;
  margin: 0;
  max-width: none;
  text-align: left;
}

.static-page.static-page--how .how-nego__lead a,
.static-page.static-page--how .how-nego__lead a[style],
.static-page.static-page--how .how-nego__lead b a,
.static-page.static-page--how .how-nego__lead b a[style] {
  color: var(--how-link-green) !important;
  font-family: Quicksand, sans-serif;
  font-weight: 700 !important;
  text-decoration: underline !important;
}

.static-page.static-page--how .how-nego__warn {
  background: var(--how-warn-bg);
  border: 1px solid var(--how-warn-border);
  border-radius: 16px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 24px;
  text-align: left;
  width: 100%;
}

.static-page.static-page--how .how-nego__warn-title {
  color: var(--how-text);
  font-size: 18px;
  letter-spacing: normal;
  line-height: 1.6;
  margin: 0;
  max-width: none;
}

.static-page.static-page--how .how-nego__warn-title strong,
.static-page.static-page--how .how-nego__warn-title b {
  font-weight: 700;
}

.static-page.static-page--how .how-nego__warn-body {
  color: var(--how-brand);
  font-family: Quicksand, sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: normal;
  line-height: normal;
  margin: 0;
  max-width: none;
}

.static-page.static-page--how .how-nego__warn-body strong,
.static-page.static-page--how .how-nego__warn-body b {
  color: var(--how-brand);
  font-family: Quicksand, sans-serif;
  font-weight: 700;
}

.static-page.static-page--how .how-nego__warn-body i,
.static-page.static-page--how .how-nego__warn-body em {
  font-style: normal;
}

/* ——— Cartes étapes (Figma : 5 × ~205, gap 24, radius 20, pad 24) ——— */
.static-page.static-page--how .how-cards {
  box-sizing: border-box;
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  list-style: none !important;
  margin: 0;
  max-width: 100%;
  min-width: 0;
  padding: 0;
  width: 100%;
}

@media (min-width: 1024px) {
  .static-page.static-page--how .how-cards {
    gap: 24px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.static-page.static-page--how .how-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  cursor: default;
  display: grid;
  gap: 4px 16px;
  grid-template-areas:
    "icon title badge"
    "icon desc desc";
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  align-items: start;
  height: auto;
  list-style: none !important;
  max-width: 100%;
  min-width: 0;
  padding: 16px;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
  width: 100%;
}

@media (min-width: 1024px) {
  .static-page.static-page--how .how-card {
    align-content: start;
    align-items: start;
    border-radius: 20px;
    gap: 16px 0;
    grid-template-areas:
      "icon badge"
      "body body";
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    padding: 24px;
    text-align: left;
  }
}

.static-page.static-page--how .how-card:hover,
.static-page.static-page--how .how-card:focus-within,
.how-nego.how-reveal.is-visible .how-card:hover,
.how-nego.how-reveal.is-visible .how-card:focus-within {
  border-color: rgba(29, 50, 84, 0.18);
  box-shadow: 0 8px 20px rgba(29, 50, 84, 0.1);
  transform: translateY(-4px);
}

.static-page.static-page--how .how-card:hover .how-card__icon,
.static-page.static-page--how .how-card:focus-within .how-card__icon {
  background: rgba(29, 50, 84, 0.11);
}

.how-card__icon {
  align-items: center;
  align-self: center;
  background: rgba(29, 50, 84, 0.07);
  border-radius: 50%;
  display: flex;
  flex-shrink: 0;
  grid-area: icon;
  height: 40px;
  justify-content: center;
  justify-self: start;
  transition: background 0.22s ease;
  width: 40px;
}

@media (min-width: 1024px) {
  .how-card__icon {
    align-self: start;
    height: 44px;
    width: 44px;
  }
}

.how-card__icon img {
  display: block;
  height: 24px;
  object-fit: contain;
  width: 24px;
}

@media (min-width: 1024px) {
  .how-card__icon img {
    height: 28px;
    width: 28px;
  }
}

.how-card__badge {
  align-items: center;
  align-self: center;
  background: rgba(29, 50, 84, 0.08);
  border-radius: 50%;
  color: #1d3254;
  display: flex;
  flex-shrink: 0;
  font-family: Quicksand, sans-serif;
  font-size: 11px;
  font-weight: 700;
  grid-area: badge;
  height: 22px;
  justify-content: center;
  justify-self: end;
  width: 22px;
}

@media (min-width: 1024px) {
  .how-card__badge {
    align-self: start;
    font-size: 14px;
    height: 32px;
    width: 32px;
  }
}

.how-card__body {
  display: contents;
  min-width: 0;
  text-align: left;
  width: 100%;
}

@media (min-width: 1024px) {
  .how-card__body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    grid-area: body;
  }
}

.static-page.static-page--how .how-card__title {
  color: #202124;
  font-family: Quicksand, sans-serif;
  font-size: 16px;
  font-weight: 700;
  grid-area: title;
  hyphens: none;
  letter-spacing: normal;
  line-height: normal;
  margin: 0;
  overflow-wrap: break-word;
  text-align: left;
  word-break: normal;
}

.static-page.static-page--how .how-card__desc {
  color: #5f6368;
  font-size: 14px;
  grid-area: desc;
  hyphens: none;
  line-height: 1.4;
  margin: 0;
  overflow-wrap: break-word;
  text-align: left;
  word-break: normal;
}

@media (min-width: 1024px) {
  .static-page.static-page--how .how-card__title {
    color: #202124;
    font-size: 18px;
    margin-bottom: 0;
  }

  .static-page.static-page--how .how-card__desc {
    font-size: 14px;
    line-height: 1.4;
  }
}

/* Encart info : 840 centré (gap section géré par .how-inner) */
.static-page.static-page--how .how-info {
  align-items: center;
  align-self: center;
  background: var(--how-info-bg);
  border: 1px solid var(--how-info-border);
  border-radius: 16px;
  box-sizing: border-box;
  display: flex;
  gap: 16px;
  margin: 0 auto;
  max-width: 840px;
  padding: 20px;
  width: 100%;
}

.static-page.static-page--how .how-info__icon {
  align-items: center;
  background: rgba(29, 50, 84, 0.07);
  border-radius: 50%;
  display: flex;
  flex-shrink: 0;
  height: 40px;
  justify-content: center;
  width: 40px;
}

.static-page.static-page--how .how-info__icon img {
  display: block;
  height: 24px;
  width: 24px;
}

.static-page.static-page--how .how-info__copy {
  min-width: 0;
}

.static-page.static-page--how .how-info__title {
  color: #1d3254;
  font-family: Quicksand, sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: normal;
  line-height: normal;
  margin: 0 0 4px;
  max-width: none;
}

.static-page.static-page--how .how-info__text {
  color: #1d3254;
  font-size: 14px;
  letter-spacing: normal;
  line-height: normal;
  margin: 0;
  max-width: none;
}

/* ——— Impact (Figma desktop 438:882 / mobile 438:1100) ——— */
.how-impact {
  background: #faf5f0;
  /* Mobile Figma : py 64 */
  padding: 64px 0;
}

@media (min-width: 1024px) {
  .how-impact {
    /* Desktop Figma : py 120 */
    padding: 120px 0;
  }
}

.static-page.static-page--how .how-impact .how-inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.static-page.static-page--how .how-impact__intro {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.static-page.static-page--how .how-impact__copy {
  color: #262626;
  font-size: 18px;
  letter-spacing: normal;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 860px;
  text-align: center;
}

.static-page.static-page--how a.how-impact__philo {
  color: #1d3253 !important;
  display: inline-block;
  font-family: Quicksand, sans-serif;
  font-size: 18px;
  font-weight: 700 !important;
  letter-spacing: normal;
  line-height: normal;
  margin: 0;
  text-align: center;
  text-decoration: underline !important;
  text-underline-offset: 3px;
}

.static-page.static-page--how a.how-impact__philo:hover,
.static-page.static-page--how a.how-impact__philo:focus-visible {
  color: var(--how-link-green) !important;
  outline: none;
}

.static-page.static-page--how .how-impact__examples {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.static-page.static-page--how .how-impact__heading {
  color: #1d3253;
  font-family: Quicksand, sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: normal;
  line-height: normal;
  margin: 0;
  text-align: left;
}

.static-page.static-page--how .how-examples {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  width: 100%;
}

@media (min-width: 1024px) {
  .static-page.static-page--how .how-examples {
    align-items: stretch;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.static-page.static-page--how .how-example {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
}

.static-page.static-page--how .how-example__title {
  color: #1d3253;
  font-family: Quicksand, sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: normal;
  line-height: normal;
  margin: 0;
}

.static-page.static-page--how .how-example__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none !important;
  margin: 0;
  padding: 0;
}

.static-page.static-page--how .how-example__list li {
  list-style: none !important;
  margin: 0;
  padding: 0;
}

.static-page.static-page--how .how-example__list li + li {
  border-top: 0;
}

.static-page.static-page--how .how-example__list a {
  align-items: center;
  color: #1d3253 !important;
  display: flex;
  font-family: Quicksand, sans-serif;
  font-size: 16px;
  font-weight: 500 !important;
  gap: 8px;
  justify-content: space-between;
  letter-spacing: normal;
  line-height: normal;
  min-height: 0;
  padding: 8px 0;
  text-decoration: none !important;
  transition: color 0.2s ease;
}

.static-page.static-page--how .how-example__list a:hover,
.static-page.static-page--how .how-example__list a:focus-visible {
  color: var(--how-link-green) !important;
  outline: none;
}

.static-page.static-page--how .how-example__arrow {
  color: #00c951;
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.2s ease;
}

.static-page.static-page--how .how-example__list a:hover .how-example__arrow,
.static-page.static-page--how .how-example__list a:focus-visible .how-example__arrow {
  transform: translateX(4px);
}

/* ——— CTA Figma desktop 438:938 / mobile 438:1156 ——— */
.how-cta {
  align-items: center;
  background: #fff;
  display: flex;
  flex-direction: column;
  /* Figma : py 80 mobile ET desktop (pas 64 / 120) */
  padding: 80px 0;
}

@media (min-width: 1024px) {
  .how-cta {
    padding: 80px 0;
  }
}

body.page-comment-ca-marche footer#bottomPage,
body:has(.static-page--how) footer#bottomPage {
  margin-top: 0 !important;
}

.static-page.static-page--how .how-cta .how-inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  max-width: 100%;
  /* (393 − 350) / 2 = 21.5 */
  padding: 0 21.5px;
  width: 100%;
}

.static-page.static-page--how .how-cta__box {
  align-items: center;
  background: #ecf1f8;
  border: 1px solid #c1cad7;
  border-radius: 32px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 auto;
  max-width: 350px;
  /* Figma 438:1157 : py 40, px 16.5 (copy w=317 dans box 350) */
  padding: 40px 16.5px;
  text-align: center;
  width: 100%;
}

.static-page.static-page--how .how-cta__copy {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 317px;
  text-align: center;
  width: 100%;
}

.static-page.static-page--how .how-cta__title {
  color: #1d3253;
  font-family: Quicksand, sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: normal;
  line-height: normal;
  margin: 0;
  text-align: center;
  white-space: nowrap;
}

.static-page.static-page--how .how-cta__text {
  color: #262626;
  font-family: Roboto, system-ui, sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.6;
  margin: 0;
  text-align: center;
  width: 100%;
}

.static-page.static-page--how a.how-cta__btn {
  align-items: center;
  background: #1d3253;
  border: 0;
  border-radius: 50px;
  color: #fff !important;
  display: inline-flex;
  font-family: Quicksand, sans-serif;
  font-size: 18px;
  font-weight: 700;
  justify-content: center;
  letter-spacing: normal;
  line-height: normal;
  margin: 0;
  padding: 16px 48px;
  text-decoration: none !important;
  white-space: nowrap;
}

.static-page.static-page--how a.how-cta__btn:hover,
.static-page.static-page--how a.how-cta__btn:focus-visible {
  background: #15263f;
  color: #fff !important;
  outline: 2px solid #1d3253;
  outline-offset: 3px;
  text-decoration: none !important;
}

.static-page.static-page--how .how-cta__signoff {
  color: #404040;
  font-family: Roboto, system-ui, sans-serif;
  font-size: 14px;
  letter-spacing: normal;
  line-height: normal;
  margin: 0;
  text-align: center;
  white-space: nowrap;
}

.static-page.static-page--how .how-cta__signoff br {
  display: none;
}

/* Desktop Figma 438:938 : box 1120, pad 40, gap 24 */
@media (min-width: 1024px) {
  .static-page.static-page--how .how-cta .how-inner {
    max-width: 1120px;
    padding: 0;
  }

  .static-page.static-page--how .how-cta__box {
    gap: 24px;
    max-width: 1120px;
    padding: 40px;
  }

  .static-page.static-page--how .how-cta__copy {
    max-width: 710px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .how-steps__item,
  .how-steps__num,
  .how-card,
  .how-card__icon {
    transition: none;
  }

  .how-steps__item:hover,
  .how-steps__item:focus-within,
  .how-card:hover,
  .how-card:focus-within,
  .how-nego.how-reveal.is-visible .how-card:hover,
  .how-nego.how-reveal.is-visible .how-card:focus-within {
    transform: none;
  }

  .how-steps__item:hover .how-steps__num,
  .how-steps__item:focus-within .how-steps__num {
    box-shadow: none;
    transform: none;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .how-reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.55s ease, transform 0.55s ease;
  }

  .how-reveal.is-visible {
    opacity: 1;
    transform: none;
  }

  .how-steps.how-reveal:not(.is-visible) .how-steps__item {
    opacity: 0;
    transform: translateY(14px);
  }

  .how-steps.how-reveal.is-visible .how-steps__item {
    opacity: 1;
    transform: none;
    transition: opacity 0.45s ease, transform 0.45s ease;
  }

  .how-steps.how-reveal.is-visible .how-steps__item:nth-child(1) { transition-delay: 0.05s; }
  .how-steps.how-reveal.is-visible .how-steps__item:nth-child(2) { transition-delay: 0.12s; }
  .how-steps.how-reveal.is-visible .how-steps__item:nth-child(3) { transition-delay: 0.19s; }
  .how-steps.how-reveal.is-visible .how-steps__item:nth-child(4) { transition-delay: 0.26s; }
  .how-steps.how-reveal.is-visible .how-steps__item:nth-child(5) { transition-delay: 0.33s; }

  .how-nego.how-reveal:not(.is-visible) .how-card {
    opacity: 0;
    transform: translateY(12px);
  }

  .how-nego.how-reveal.is-visible .how-card {
    opacity: 1;
    transform: none;
    transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.2s ease;
  }

  .how-nego.how-reveal.is-visible .how-card:nth-child(1) { transition-delay: 0.05s; }
  .how-nego.how-reveal.is-visible .how-card:nth-child(2) { transition-delay: 0.1s; }
  .how-nego.how-reveal.is-visible .how-card:nth-child(3) { transition-delay: 0.15s; }
  .how-nego.how-reveal.is-visible .how-card:nth-child(4) { transition-delay: 0.2s; }
  .how-nego.how-reveal.is-visible .how-card:nth-child(5) { transition-delay: 0.25s; }
}
