/* Sections homepage Estudial (sous le hero) */

.home-section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: rgba(12, 39, 179, 0.08);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-primary, #0c27b3);
}

.home-section-title {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #0b1f33;
}

.home-section-lead {
  margin: 0.75rem 0 0;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: #637381;
}

/* ——— Parcours ——— */
.home-journey {
  padding: 0;
}

.home-journey__panel {
  position: relative;
  overflow: hidden;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 4rem 0 6rem;
  border-radius: 0;
  background:
    radial-gradient(ellipse 90% 70% at 15% 0%, rgba(61, 82, 212, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 95% 100%, rgba(12, 39, 179, 0.45) 0%, transparent 50%),
    linear-gradient(155deg, #001433 0%, #002e58 42%, #0c27b3 100%);
}

.home-journey__container {
  width: 100%;
}

.home-journey__layout {
  display: grid;
}

@media (max-width: 1099px) {
  .home-journey__layout {
    gap: 2rem;
  }
}

@media (min-width: 1100px) {
  .home-journey__panel {
    padding: 5rem 0 6.5rem;
  }

  .home-journey__layout.estudial-home-grid {
    gap: 2.5rem 6.5rem;
  }

  .home-journey__copy {
    max-width: none;
    min-width: 0;
  }

  .home-journey__header {
    justify-content: center;
    align-self: stretch;
    min-height: 32rem;
    max-width: none;
  }

  .home-journey__flow {
    width: 100%;
    max-width: none;
    margin-inline: 0;
    justify-self: stretch;
  }
}

.home-journey__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: none;
}

.home-journey__copy {
  min-width: 0;
}

.home-journey__eyebrow {
  align-self: flex-start;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 0.875rem;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #93c5fd;
}

.home-journey__title {
  margin: 0 0 1rem;
  width: 100%;
  font-size: clamp(1.85rem, 3.2vw, 2.85rem);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}

.home-journey__title-line {
  display: block;
}

@media (min-width: 640px) {
  .home-journey__title-line {
    white-space: nowrap;
  }
}

.home-journey__highlight {
  color: #7dd3fc;
}

.home-journey__lead {
  margin: 0 0 1.25rem;
  width: 100%;
  max-width: 34rem;
  font-size: 1.125rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.86);
  text-wrap: pretty;
}

.home-journey__lead--continued {
  margin-top: -0.5rem;
  margin-bottom: 1.25rem;
}

.home-journey__actions {
  width: 100%;
  margin-top: 0;
}

.home-journey__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff !important;
  color: var(--color-primary, #0c27b3) !important;
  border-color: #fff !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18) !important;
}

.home-journey__btn:hover {
  background: #f8fbff !important;
  color: var(--color-primary-dark, #0a2199) !important;
}

.home-journey__btn .hgi,
.home-journey__btn i {
  color: currentColor !important;
}

/* Zigzag — grille 2×2 + chemin en Z (1→2→3→4) */
.home-journey__flow {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: 32rem;
  padding: 0.25rem 0 1.25rem;
}

.home-journey__path {
  position: absolute;
  top: 2.5rem;
  left: 0;
  right: 0;
  height: 20rem;
  width: 100%;
  z-index: 0;
  pointer-events: none;
}

.home-journey__path-shadow {
  fill: none;
  stroke: rgba(30, 64, 175, 0.35);
  stroke-width: 48;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-journey__path-ribbon {
  fill: none;
  stroke: rgba(186, 230, 253, 0.55);
  stroke-width: 30;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-journey__flow-steps {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  column-gap: 0.75rem;
  row-gap: 7rem;
}

.home-journey__node {
  display: flex;
  width: 9.5rem;
  max-width: 100%;
}

.home-journey__node--1,
.home-journey__node--3 {
  justify-self: start;
}

.home-journey__node--2,
.home-journey__node--4 {
  justify-self: end;
}

.home-journey__node-link {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 9.5rem;
  text-align: center;
  color: inherit;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    filter 0.2s ease;
}

.home-journey__node-link:hover {
  transform: translateY(-4px);
}

.home-journey__node-link:hover .home-journey__node-plate {
  box-shadow:
    0 16px 32px rgba(0, 0, 0, 0.28),
    0 0 0 4px rgba(186, 230, 253, 0.35);
}

.home-journey__node-link:focus-visible {
  outline: 2px solid #93c5fd;
  outline-offset: 4px;
  border-radius: 0.75rem;
}

.home-journey__node-badge {
  position: absolute;
  top: 0.1rem;
  left: calc(50% - 2.5rem);
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  background: #fff;
  color: var(--color-primary, #0c27b3);
  font-size: 0.8125rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
}

.home-journey__node-stage {
  position: relative;
  width: 6rem;
  height: 6rem;
  margin-bottom: 0.75rem;
}

.home-journey__node-ring {
  position: absolute;
  top: 0.35rem;
  left: 50%;
  z-index: 0;
  transform: translateX(-50%);
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 0 12px rgba(255, 255, 255, 0.06);
}

.home-journey__node-shadow {
  position: absolute;
  bottom: 0.35rem;
  left: 50%;
  z-index: 1;
  transform: translateX(-50%);
  width: 4.5rem;
  height: 0.85rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  filter: blur(4px);
}

.home-journey__node-plate {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.25rem;
  height: 5.25rem;
  margin: 0 auto;
  border-radius: 50%;
  background: linear-gradient(165deg, #ffffff 0%, #eef3fb 100%);
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.25),
    0 1px 0 rgba(255, 255, 255, 0.95) inset;
  transition: box-shadow 0.2s ease;
}

.home-journey__node-plate .hgi,
.home-journey__node-plate i {
  font-size: 2.25rem;
  line-height: 1;
  color: var(--color-primary, #0c27b3) !important;
}

.home-journey__node-label {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  text-wrap: balance;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.home-journey__node-link:hover .home-journey__node-label {
  color: #e0f2fe;
}

@media (min-width: 1100px) {
  .home-journey__flow {
    min-height: 34rem;
    padding-bottom: 0.75rem;
  }

  .home-journey__path {
    top: 2.75rem;
    height: 21.5rem;
  }

  .home-journey__flow-steps {
    row-gap: 7.5rem;
  }
}

@media (max-width: 767px) {
  .home-journey__panel {
    padding: 2.5rem 0;
  }

  .home-journey__flow {
    height: auto;
    min-height: 0;
  }

  .home-journey__path {
    display: none;
  }

  .home-journey__flow-steps {
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 1.75rem;
  }

  .home-journey__node,
  .home-journey__node--1,
  .home-journey__node--2,
  .home-journey__node--3,
  .home-journey__node--4 {
    justify-self: center;
    width: 100%;
    max-width: 14rem;
  }

  .home-journey__node-link {
    width: 100%;
    max-width: 14rem;
  }

  .home-journey__node-badge {
    left: calc(50% - 2.5rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-journey__node-link {
    transition: none;
  }

  .home-journey__node-link:hover {
    transform: none;
  }
}

/* ——— Témoignages ——— */
.home-stories {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0;
  background: linear-gradient(180deg, #f8fbff 0%, #fff 55%);
}

.home-stories__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 45% at 8% 12%, rgba(12, 39, 179, 0.07) 0%, transparent 58%),
    radial-gradient(ellipse 40% 35% at 92% 20%, rgba(25, 195, 125, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 70% 100%, rgba(56, 189, 248, 0.07) 0%, transparent 50%);
}

.home-stories__inner {
  position: relative;
  z-index: 1;
}

.home-stories__intro {
  display: grid;
  gap: 2rem;
  margin-bottom: 0;
}

@media (min-width: 1100px) {
  .home-stories__intro.estudial-home-grid {
    grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.12fr);
    gap: 2rem 4rem;
    align-items: start;
  }
}

.home-stories__visual {
  margin: 0;
  min-width: 0;
}

@media (min-width: 1100px) {
  .home-stories__visual {
    position: sticky;
    top: 6rem;
  }
}

.home-stories__visual-frame {
  position: relative;
  overflow: hidden;
  border-radius: 1.35rem;
  border: 1px solid rgba(12, 39, 179, 0.1);
  background: #fff;
  box-shadow:
    0 2px 4px rgba(22, 28, 36, 0.04),
    0 20px 48px rgba(0, 46, 88, 0.1);
}

.home-stories__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.home-stories__copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.home-stories__header {
  max-width: none;
  margin-bottom: 0;
}

.home-stories__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-primary, #0c27b3);
}

.home-stories__title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0b1f33;
}

.home-stories__title-line {
  display: block;
}

@media (min-width: 640px) {
  .home-stories__title-line {
    white-space: nowrap;
  }
}

.home-stories__highlight {
  color: var(--color-primary, #0c27b3);
}

.home-stories__lead {
  margin: 0 0 0.85rem;
  max-width: 38rem;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: #637381;
  text-wrap: pretty;
}

.home-stories__lead--continued {
  margin-top: -0.35rem;
  margin-bottom: 0;
}

/* Carrousel — 4 témoignages visibles, défilement continu */
.home-stories__carousel {
  min-width: 0;
}

.home-stories__carousel-viewport {
  container-type: inline-size;
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 6%,
    #000 94%,
    transparent 100%
  );
}

.home-stories__track {
  display: flex;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  width: max-content;
  animation: home-stories-marquee 42s linear infinite;
}

.home-stories__track.is-paused,
.home-stories__track.is-static {
  animation-play-state: paused;
}

.home-stories__track.is-static {
  width: 100%;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

@keyframes home-stories-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.home-stories__card {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 0 0 calc((100cqw - 1.5rem) / 4);
  min-width: 0;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(12, 39, 179, 0.1);
  border-radius: 0.85rem;
  background:
    linear-gradient(145deg, var(--story-accent-soft, rgba(12, 39, 179, 0.08)) 0%, #fff 55%);
  box-shadow: 0 6px 20px rgba(0, 46, 88, 0.05);
  scroll-snap-align: start;
}

@media (max-width: 639px) {
  .home-stories__card {
    flex: 0 0 calc((100cqw - 0.5rem) / 2);
  }
}

.home-stories__actions {
  margin-top: 0.85rem;
}

.home-stories__cta {
  display: inline-flex !important;
  align-items: center;
  gap: 0.45rem;
}

.home-stories__cta .hgi,
.home-stories__cta i {
  color: currentColor !important;
}

.home-stories__card:hover {
  border-color: rgba(12, 39, 179, 0.18);
  box-shadow: 0 10px 28px rgba(0, 46, 88, 0.09);
}

.home-stories__card--blue {
  --story-accent: #0c27b3;
  --story-accent-soft: rgba(12, 39, 179, 0.1);
}

.home-stories__card--mint {
  --story-accent: #19c37d;
  --story-accent-soft: rgba(25, 195, 125, 0.12);
}

.home-stories__card--sky {
  --story-accent: #0284c7;
  --story-accent-soft: rgba(2, 132, 199, 0.12);
}

.home-stories__card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.45rem;
}

.home-stories__route {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  min-width: 0;
}

.home-stories__route-flag {
  font-size: 0.9375rem;
  line-height: 1;
}

.home-stories__route-arrow {
  display: inline-flex;
  flex-shrink: 0;
}

.home-stories__route-arrow .hgi,
.home-stories__route-arrow i {
  font-size: 0.75rem;
  color: #94a3b8 !important;
}

.home-stories__route-city {
  font-size: 0.75rem;
  font-weight: 700;
  color: #0b1f33;
  white-space: nowrap;
}

.home-stories__success {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.15rem 0.4rem;
  border-radius: 999px;
  background: var(--story-accent-soft);
  color: var(--story-accent);
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
}

.home-stories__success .hgi,
.home-stories__success i {
  font-size: 0.75rem;
  color: var(--story-accent) !important;
}

.home-stories__quote {
  margin: 0;
  flex: 1;
}

.home-stories__quote p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  font-weight: 500;
  color: #161c24;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-stories__author {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-top: 0.55rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(12, 39, 179, 0.08);
}

.home-stories__name {
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 800;
  color: #0b1f33;
}

.home-stories__meta {
  font-size: 0.75rem;
  color: #98a2b3;
}

.home-stories__outcome {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--story-accent);
}

@media (prefers-reduced-motion: reduce) {
  .home-stories__track {
    animation: none;
  }

  .home-stories__card {
    transition: none;
  }
}

/* ——— Simulateur / Pourquoi Estudial ——— */
.home-why {
  padding: 4rem 0;
}

.home-why__layout {
  display: grid;
}

@media (max-width: 1099px) {
  .home-why__layout {
    gap: 2rem;
  }
}

@media (min-width: 1100px) {
  .home-why__layout.estudial-home-grid {
    grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1fr);
    gap: 2.5rem 6.5rem;
  }

  .home-why__copy {
    max-width: none;
    min-width: 0;
  }
}

.home-why__visual {
  min-width: 0;
  width: 100%;
}

.home-why__copy {
  min-width: 0;
}

.home-why__simulator {
  width: 100%;
  max-width: 26rem;
  margin-inline: auto;
  padding: 1.5rem;
  border-radius: 1.35rem;
  border: 1px solid rgba(12, 39, 179, 0.12);
  background:
    linear-gradient(155deg, rgba(216, 232, 253, 0.65) 0%, #fff 48%);
  box-shadow:
    0 2px 4px rgba(22, 28, 36, 0.04),
    0 20px 48px rgba(0, 46, 88, 0.12);
}

.home-why__simulator-head {
  margin-bottom: 1.25rem;
}

.home-why__simulator-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-primary, #0c27b3);
}

.home-why__simulator-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: #0b1f33;
}

.home-why__simulator-sub {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #637381;
}

.home-why__simulator-form {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.home-why__simulator-field label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #161c24;
}

.home-why__simulator-field select {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1px solid rgba(148, 163, 184, 0.45);
  border-radius: 0.65rem;
  background: #fff;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #161c24;
}

.home-why__simulator-field select:focus {
  outline: 2px solid rgba(12, 39, 179, 0.35);
  outline-offset: 1px;
}

.home-why__simulator-submit {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  margin-top: 0.25rem;
}

.home-why__simulator-submit .hgi,
.home-why__simulator-submit i {
  color: currentColor !important;
}

.home-why__score-card {
  padding: 1.15rem 1.15rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(12, 39, 179, 0.1);
  background: rgba(255, 255, 255, 0.92);
}

.home-why__score-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.home-why__score-label {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #637381;
}

.home-why__score-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(12, 39, 179, 0.08);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-primary, #0c27b3);
}

.home-why__score-value {
  margin: 0.35rem 0 0.35rem;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--color-primary, #0c27b3);
}

.home-why__score-value span {
  font-size: 1.125rem;
  font-weight: 700;
  color: #98a2b3;
}

.home-why__score-verdict {
  margin: 0 0 0.85rem;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.4;
}

.home-why__score-verdict.is-strong {
  color: #008a47;
}

.home-why__score-verdict.is-mid {
  color: var(--color-primary, #0c27b3);
}

.home-why__score-verdict.is-low {
  color: #637381;
}

.home-why__score-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.home-why__score-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0.75rem;
  border-radius: 0.65rem;
  background: rgba(248, 250, 252, 0.95);
  font-size: 0.875rem;
  font-weight: 600;
  color: #161c24;
}

.home-why__score-list span:last-child {
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
}

.home-why__score-list .is-done {
  background: rgba(0, 171, 85, 0.12);
  color: #008a47;
}

.home-why__score-list .is-progress {
  background: rgba(12, 39, 179, 0.1);
  color: var(--color-primary, #0c27b3);
}

.home-why__score-list .is-pending {
  background: rgba(145, 158, 171, 0.12);
  color: #637381;
}

.home-why__score-list [data-voyant] {
  transition:
    background 0.35s ease,
    color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s ease;
}

.home-why__score-list [data-voyant].is-flash {
  animation: mobility-voyant-flash 0.55s ease;
}

@keyframes mobility-voyant-flash {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 171, 85, 0);
  }
  40% {
    transform: scale(1.08);
    box-shadow: 0 0 0 6px rgba(0, 171, 85, 0.22);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 171, 85, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-why__score-list [data-voyant].is-flash {
    animation: none;
  }
}

.home-why__simulator-cta {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  margin-top: 1rem;
}

.home-why__simulator-cta .hgi,
.home-why__simulator-cta i {
  color: currentColor !important;
}

.home-why__eyebrow {
  align-self: flex-start;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 0.875rem;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-primary, #0c27b3);
}

.home-why__title {
  margin: 0 0 1rem;
  width: 100%;
  font-size: clamp(1.85rem, 3.2vw, 2.85rem);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0b1f33;
}

.home-why__title-line {
  display: block;
}

@media (min-width: 640px) {
  .home-why__title-line {
    white-space: nowrap;
  }
}

.home-why__highlight {
  color: var(--color-primary, #0c27b3);
}

.home-why__lead {
  margin: 0 0 1.25rem;
  width: 100%;
  max-width: 34rem;
  font-size: 1.125rem;
  line-height: 1.65;
  color: #637381;
  text-wrap: pretty;
}

.home-why__lead--continued {
  margin-top: -0.5rem;
  margin-bottom: 1.25rem;
}

.mobility-simulator {
  width: 100%;
}

.mobility-simulator--teaser .home-why__simulator {
  margin-inline: auto;
}

.home-why__points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.home-why__points li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #161c24;
}

.home-why__check {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  background: var(--color-primary, #0c27b3);
  color: #fff;
}

.home-why__check .hgi,
.home-why__check i {
  font-size: 0.875rem;
  color: #fff !important;
}

.home-why__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
  margin-top: 1.5rem;
  width: 100%;
}

.home-why__btn {
  display: inline-flex !important;
  align-items: center;
  gap: 0.45rem;
}

.home-why__btn .hgi,
.home-why__btn i {
  color: currentColor !important;
}

.home-why__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-primary, #0c27b3);
  text-decoration: none;
}

.home-why__cta:hover {
  text-decoration: underline;
}

.home-why__cta .hgi,
.home-why__cta i {
  color: currentColor !important;
}

/* ——— Blog homepage (après simulateur) ——— */
.home-blog {
  padding: 4rem 0 3.5rem;
  background: linear-gradient(180deg, #f7faff 0%, #fff 55%);
}

.home-blog__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem 2rem;
  margin-bottom: 2rem;
}

.home-blog__intro {
  max-width: 40rem;
}

.home-blog__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.85rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(12, 39, 179, 0.08);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-primary, #0c27b3);
}

.home-blog__eyebrow .hgi,
.home-blog__eyebrow i {
  font-size: 0.95rem;
  color: currentColor !important;
}

.home-blog__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #0b1f33;
}

.home-blog__lead {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #637381;
  text-wrap: pretty;
}

.home-blog__cta {
  display: inline-flex !important;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}

.home-blog__cta .hgi,
.home-blog__cta i {
  color: currentColor !important;
}

.home-blog__layout {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 960px) {
  .home-blog__layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 1.5rem;
    align-items: stretch;
  }
}

.home-blog__featured {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 1.35rem;
  background: #fff;
  border: 1px solid rgba(12, 39, 179, 0.1);
  box-shadow: 0 14px 36px rgba(2, 18, 89, 0.08);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

@media (hover: hover) {
  .home-blog__featured:hover,
  .home-blog__card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(2, 18, 89, 0.12);
  }
}

.home-blog__featured-media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e8eef8;
}

.home-blog__featured-media img,
.home-blog__card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-blog__featured-body {
  display: grid;
  gap: 0.55rem;
  padding: 1.25rem 1.35rem 1.4rem;
}

.home-blog__category {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-primary, #0c27b3);
}

.home-blog__featured-title {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 800;
  line-height: 1.3;
  color: #0b1f33;
  text-wrap: pretty;
}

.home-blog__side {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-blog__card {
  display: grid;
  grid-template-columns: 5.5rem minmax(0, 1fr);
  gap: 0.9rem;
  align-items: start;
  padding: 0.85rem;
  border-radius: 1.1rem;
  background: #fff;
  border: 1px solid rgba(12, 39, 179, 0.1);
  box-shadow: 0 10px 28px rgba(2, 18, 89, 0.05);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
}

.home-blog__card-media {
  display: block;
  width: 5.5rem;
  height: 5.5rem;
  overflow: hidden;
  border-radius: 0.85rem;
  background: #e8eef8;
  flex-shrink: 0;
}

.home-blog__card-body {
  display: grid;
  gap: 0.3rem;
  min-width: 0;
}

.home-blog__card-title {
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.35;
  color: #0b1f33;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-blog__card-excerpt {
  font-size: 0.82rem;
  line-height: 1.45;
  color: #637381;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-blog__card-date {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.15rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
}

.home-blog__card-date .hgi,
.home-blog__card-date i {
  font-size: 0.85rem;
  color: currentColor !important;
}

@media (prefers-reduced-motion: reduce) {
  .home-blog__featured,
  .home-blog__card {
    transition: none;
  }

  .home-blog__featured:hover,
  .home-blog__card:hover {
    transform: none;
  }
}

@media (max-width: 639px) {
  .home-blog {
    padding: 3rem 0;
  }

  .home-blog__header {
    align-items: flex-start;
  }

  .home-blog__card {
    grid-template-columns: 4.5rem minmax(0, 1fr);
  }

  .home-blog__card-media {
    width: 4.5rem;
    height: 4.5rem;
  }
}

/* ——— Page simulateur ——— */
.simulator-page {
  padding: 3rem 0 4.5rem;
  background: linear-gradient(180deg, #f8fbff 0%, #fff 42%);
}

.simulator-page__layout {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1100px) {
  .simulator-page__layout {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.88fr);
    gap: 2.5rem 4rem;
    align-items: start;
  }
}

.simulator-page__eyebrow {
  margin: 0 0 0.875rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-primary, #0c27b3);
}

.simulator-page__title {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 3.2vw, 2.65rem);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0b1f33;
}

.simulator-page__title-line {
  display: block;
}

@media (min-width: 640px) {
  .simulator-page__title-line {
    white-space: nowrap;
  }
}

.simulator-page__highlight {
  color: var(--color-primary, #0c27b3);
}

.simulator-page__lead {
  margin: 0 0 1rem;
  font-size: 1.125rem;
  line-height: 1.65;
  color: #637381;
  text-wrap: pretty;
}

.simulator-page__text,
.simulator-page__note {
  margin: 0 0 0.85rem;
  font-size: 1rem;
  line-height: 1.65;
  color: #475569;
}

.simulator-page__note {
  padding: 0.85rem 1rem;
  border-radius: 0.75rem;
  background: rgba(12, 39, 179, 0.06);
  border: 1px solid rgba(12, 39, 179, 0.1);
}

.simulator-page__note--success {
  background: rgba(0, 171, 85, 0.06);
  border-color: rgba(0, 171, 85, 0.14);
  color: #04535c;
}

.simulator-page__tool {
  min-width: 0;
}

/* ——— CTA final ——— */
.home-cta {
  padding: 2.5rem 0 5rem;
}

.home-cta__card {
  position: relative;
  overflow: hidden;
  padding: 2.5rem 1.5rem;
  border-radius: 1.5rem;
  background:
    radial-gradient(ellipse 70% 80% at 0% 0%, rgba(61, 82, 212, 0.55) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 100% 100%, rgba(25, 195, 125, 0.18) 0%, transparent 50%),
    linear-gradient(145deg, #001433 0%, #0c27b3 48%, #002e58 100%);
  color: #fff;
  box-shadow:
    0 4px 8px rgba(0, 20, 51, 0.12),
    0 24px 56px rgba(0, 46, 88, 0.28);
}

@media (min-width: 768px) {
  .home-cta__card {
    padding: 3.25rem 3.25rem;
  }
}

.home-cta__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 40%, rgba(255, 255, 255, 0.06) 50%, transparent 60%);
  animation: home-cta-shine 7s ease-in-out infinite;
}

@keyframes home-cta-shine {
  0%,
  100% {
    opacity: 0.35;
    transform: translateX(-8%);
  }
  50% {
    opacity: 0.7;
    transform: translateX(8%);
  }
}

.home-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 36rem;
  margin-inline: auto;
  text-align: center;
}

.home-cta__title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.85rem, 3.2vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
}

.home-cta__title-line {
  display: block;
}

@media (min-width: 640px) {
  .home-cta__title-line {
    white-space: nowrap;
  }
}

.home-cta__highlight {
  color: #7dd3fc;
}

.home-cta__lead {
  margin: 0 auto;
  max-width: 32rem;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  text-wrap: pretty;
}

.home-cta__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem 1.25rem;
  margin-top: 1.5rem;
}

.home-cta__btn {
  display: inline-flex !important;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px !important;
  padding: 0.85rem 1.5rem !important;
  background: #fff !important;
  color: var(--color-primary, #0c27b3) !important;
  border-color: #fff !important;
  font-weight: 700 !important;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22) !important;
}

.home-cta__btn:hover {
  background: #f0f7ff !important;
  color: var(--color-primary-dark, #0a2199) !important;
}

.home-cta__btn .hgi,
.home-cta__btn i {
  color: currentColor !important;
}

.home-cta__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #e0f2fe;
  text-decoration: none;
}

.home-cta__link:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.home-cta__link .hgi,
.home-cta__link i {
  font-size: 0.9rem;
  color: currentColor !important;
}

@media (prefers-reduced-motion: reduce) {
  .home-cta__glow {
    animation: none;
  }
}

@media (max-width: 767px) {
  .home-stories,
  .home-why {
    padding: 3rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-journey__node-link {
    transition: none;
  }
}

/* ——— Page À propos ——— */
.about-page {
  --about-ink: #0b1f33;
  --about-muted: #3d4f63;
  --about-soft: #f3f7fd;
  --about-line: rgba(12, 39, 179, 0.12);
  background: #fff;
  color: var(--about-ink);
}

.about-page__hero {
  position: relative;
  overflow: hidden;
  padding: 3rem 0 3.25rem;
  background: linear-gradient(145deg, #e8f1ff 0%, #f7faff 48%, #eef4ff 100%);
}

.about-page__hero-glow {
  position: absolute;
  inset: auto -10% -40% 40%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(12, 39, 179, 0.14) 0%, transparent 68%);
  pointer-events: none;
}

.about-page__hero-inner {
  position: relative;
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 960px) {
  .about-page__hero-inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 3.25rem;
  }
}

.about-page__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-primary, #0c27b3);
}

.about-page__title {
  margin: 0 0 1rem;
  font-size: clamp(2.15rem, 4vw, 3.1rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--about-ink);
}

.about-page__lead {
  margin: 0 0 1.6rem;
  max-width: 36rem;
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--about-muted);
  text-wrap: pretty;
}

.about-page__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}

.about-page__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-primary, #0c27b3);
  text-decoration: none;
}

.about-page__link:hover {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.about-page__link .hgi,
.about-page__link i,
.about-page__support .btn .hgi,
.about-page__support .btn i {
  font-size: 0.9rem;
  color: currentColor !important;
}

.about-page__hero-media {
  margin: 0;
  overflow: hidden;
  border-radius: 1.35rem;
  box-shadow:
    0 24px 60px rgba(2, 18, 89, 0.14),
    0 0 0 1px rgba(12, 39, 179, 0.06);
  transform: rotate(-0.6deg);
}

.about-page__hero-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-page__band {
  padding: 3.25rem 0;
}

.about-page__band--soft {
  background: var(--about-soft);
}

.about-page__band--quote {
  padding: 0;
  background: linear-gradient(180deg, #f7faff 0%, #fff 100%);
}

.about-page__band--future {
  background: linear-gradient(135deg, #002e58 0%, #0c27b3 55%, #1a4fd6 100%);
  padding: 3.5rem 0;
}

.about-page__quote {
  position: relative;
  margin: -1.25rem auto 0;
  max-width: 48rem;
  padding: 1.75rem 1.75rem 1.75rem 2rem;
  border-radius: 1.15rem;
  background: #fff;
  border: 1px solid var(--about-line);
  box-shadow: 0 16px 40px rgba(2, 18, 89, 0.08);
}

.about-page__quote-mark {
  position: absolute;
  top: 0.35rem;
  left: 1rem;
  font-size: 3.5rem;
  line-height: 1;
  font-weight: 800;
  color: rgba(12, 39, 179, 0.18);
}

.about-page__quote p {
  margin: 0 0 0.75rem;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.5;
  font-weight: 600;
  color: var(--about-ink);
  text-wrap: pretty;
}

.about-page__quote footer {
  font-size: 0.875rem;
  font-weight: 700;
  color: #64748b;
}

.about-page__split {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 900px) {
  .about-page__split {
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
    gap: 3rem;
  }
}

.about-page__founder {
  position: sticky;
  top: 5.5rem;
  margin: 0;
}

.about-page__founder img {
  display: block;
  width: 100%;
  max-width: 280px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 1.15rem;
  box-shadow: 0 18px 40px rgba(2, 18, 89, 0.12);
}

.about-page__founder-meta {
  margin-top: 1rem;
}

.about-page__founder-name {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--about-ink);
}

.about-page__founder-role {
  margin: 0.2rem 0 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary, #0c27b3);
}

.about-page__founder-since {
  margin: 0.45rem 0 0;
  display: inline-flex;
  font-size: 0.75rem;
  font-weight: 700;
  color: #334155;
  background: rgba(12, 39, 179, 0.08);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
}

.about-page__section-title {
  margin: 0 0 1rem;
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--about-ink);
}

.about-page__section-title--on-dark {
  color: #fff;
}

.about-page__section-header {
  max-width: 44rem;
  margin-bottom: 1.75rem;
}

.about-page__section-header--center {
  margin-inline: auto;
  text-align: center;
}

.about-page__section-header--center .about-page__text {
  margin-inline: auto;
}

.about-page__text {
  margin: 0 0 0.95rem;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--about-muted);
  text-wrap: pretty;
}

.about-page__text:last-child {
  margin-bottom: 0;
}

.about-page__text--on-dark {
  color: rgba(255, 255, 255, 0.88);
  max-width: 42rem;
}

.about-page__prose--narrow {
  max-width: 44rem;
}

.about-page__company {
  display: grid;
  gap: 2rem;
}

@media (min-width: 960px) {
  .about-page__company {
    grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.8fr);
    gap: 3rem;
    align-items: center;
  }
}

.about-page__presence {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-page__presence li {
  display: grid;
  gap: 0.2rem;
  padding: 1rem 1.15rem;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid var(--about-line);
}

.about-page__presence-label {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-primary, #0c27b3);
}

.about-page__presence-desc {
  font-size: 0.95rem;
  color: var(--about-muted);
}

.about-page__mission-grid {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 720px) {
  .about-page__mission-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .about-page__mission-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-page__mission-grid > :nth-child(4),
  .about-page__mission-grid > :nth-child(5) {
    grid-column: span 1;
  }
}

.about-page__mission-item,
.about-page__value {
  display: grid;
  gap: 0.75rem;
  padding: 1.25rem 1.2rem;
  border-radius: 1.1rem;
  background: #fff;
  border: 1px solid var(--about-line);
  box-shadow: 0 8px 24px rgba(2, 18, 89, 0.04);
}

.about-page__mission-item {
  grid-template-columns: auto 1fr;
  align-items: start;
}

.about-page__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.85rem;
  background: rgba(12, 39, 179, 0.08);
  color: var(--color-primary, #0c27b3);
  flex-shrink: 0;
}

.about-page__icon--lg {
  width: 3rem;
  height: 3rem;
}

.about-page__icon .hgi,
.about-page__icon i {
  font-size: 1.2rem;
  color: currentColor !important;
}

.about-page__item-title {
  margin: 0 0 0.3rem;
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--about-ink);
}

.about-page__item-desc {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--about-muted);
}

.about-page__values-grid {
  display: grid;
  gap: 1rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 800px) {
  .about-page__values-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.about-page__value {
  min-height: 100%;
}

.about-page__closing {
  margin: 1.5rem 0 0;
  max-width: 40rem;
  font-size: 1.05rem;
  line-height: 1.55;
  font-weight: 700;
  color: var(--about-ink);
}

.about-page__future {
  max-width: 44rem;
}

.about-page__team-grid {
  display: grid;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 640px) {
  .about-page__team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .about-page__team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.about-page__member {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 1.2rem;
  background: #fff;
  border: 1px solid var(--about-line);
  box-shadow: 0 10px 28px rgba(2, 18, 89, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

@media (hover: hover) {
  .about-page__member:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(2, 18, 89, 0.1);
  }
}

.about-page__member-photo-wrap {
  aspect-ratio: 1;
  overflow: hidden;
  background: #e8eef8;
}

.about-page__member-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-page__member-body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.1rem 1.15rem 1.25rem;
  flex: 1;
}

.about-page__member-name {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--about-ink);
}

.about-page__member-role {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary, #0c27b3);
}

.about-page__member-meta {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
}

.about-page__member-bio {
  margin: 0.35rem 0 0.45rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--about-muted);
  flex: 1;
}

.about-page__member-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-page__member-tags li {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #334155;
  background: rgba(12, 39, 179, 0.07);
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
}

.about-page__support {
  display: grid;
  gap: 1.75rem;
  padding: 1.75rem;
  border-radius: 1.35rem;
  background: #fff;
  border: 1px solid var(--about-line);
  box-shadow: 0 14px 36px rgba(2, 18, 89, 0.06);
}

@media (min-width: 900px) {
  .about-page__support {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 2.5rem;
    align-items: center;
    padding: 2rem 2.25rem;
  }
}

.about-page__support-list {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-page__support-list li {
  position: relative;
  padding: 0.85rem 0.95rem 0.85rem 2.1rem;
  border-radius: 0.85rem;
  background: var(--about-soft);
  font-size: 0.95rem;
  line-height: 1.5;
  color: #334155;
}

.about-page__support-list li::before {
  content: '';
  position: absolute;
  left: 0.85rem;
  top: 1.15rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: #00ab55;
}

@media (prefers-reduced-motion: reduce) {
  .about-page__member {
    transition: none;
  }

  .about-page__member:hover {
    transform: none;
  }
}

@media (max-width: 640px) {
  .about-page__hero {
    padding: 2.25rem 0 2.5rem;
  }

  .about-page__hero-media {
    transform: none;
  }

  .about-page__founder {
    position: static;
  }

  .about-page__founder img {
    max-width: 200px;
  }

  .about-page__quote {
    margin-top: 0;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }

  .about-page__support {
    padding: 1.25rem;
  }
}

/* ——— Page Blog ——— */
.blog-page {
  --blog-ink: #0b1f33;
  --blog-muted: #3d4f63;
  --blog-soft: #f3f7fd;
  --blog-line: rgba(12, 39, 179, 0.12);
  background: #fff;
}

.blog-page__hero {
  position: relative;
  overflow: hidden;
  padding: 3rem 0 2.5rem;
  background: linear-gradient(145deg, #e8f1ff 0%, #f7faff 48%, #eef4ff 100%);
}

.blog-page__hero-glow {
  position: absolute;
  inset: auto -12% -45% 35%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(12, 39, 179, 0.14) 0%, transparent 68%);
  pointer-events: none;
}

.blog-page__hero-inner {
  position: relative;
}

.blog-page__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-primary, #0c27b3);
}

.blog-page__eyebrow a {
  color: inherit;
  text-decoration: none;
}

.blog-page__eyebrow a:hover {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.blog-page__title {
  margin: 0 0 1rem;
  max-width: 40rem;
  font-size: clamp(2.1rem, 4vw, 3rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--blog-ink);
}

.blog-page__title-line {
  display: block;
}

.blog-page__highlight {
  color: var(--color-primary, #0c27b3);
}

.blog-page__highlight--on-dark {
  color: #7dd3fc;
}

.blog-page__lead {
  margin: 0 0 1.5rem;
  max-width: 40rem;
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--blog-muted);
  text-wrap: pretty;
}

.blog-page__search {
  margin: 0;
  max-width: 36rem;
}

.blog-page__search-field {
  position: relative;
  display: flex;
  align-items: center;
}

.blog-page__search-icon {
  position: absolute;
  left: 1rem;
  font-size: 1.1rem;
  color: #64748b !important;
  pointer-events: none;
}

.blog-page__search-input {
  width: 100%;
  appearance: none;
  border: 1px solid rgba(12, 39, 179, 0.14);
  background: #fff;
  border-radius: 999px;
  padding: 0.9rem 2.75rem 0.9rem 2.75rem;
  font: inherit;
  font-size: 0.9875rem;
  color: var(--blog-ink);
  box-shadow: 0 10px 28px rgba(2, 18, 89, 0.06);
}

.blog-page__search-input::placeholder {
  color: #94a3b8;
}

.blog-page__search-input:focus {
  outline: 2px solid rgba(12, 39, 179, 0.35);
  outline-offset: 2px;
  border-color: rgba(12, 39, 179, 0.35);
}

.blog-page__search-clear {
  position: absolute;
  right: 0.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
  color: #475569;
  cursor: pointer;
}

.blog-page__search-clear .hgi,
.blog-page__search-clear i {
  font-size: 0.95rem;
  color: currentColor !important;
}

.blog-page__search-clear[hidden] {
  display: none !important;
}

.blog-page__featured-band[hidden] {
  display: none !important;
}

.blog-page__featured-band {
  padding: 2.5rem 0 1rem;
}

.blog-page__featured {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}

@media (min-width: 960px) {
  .blog-page__featured {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 3rem;
  }
}

.blog-page__featured-media {
  margin: 0;
  overflow: hidden;
  border-radius: 1.35rem;
  box-shadow: 0 20px 50px rgba(2, 18, 89, 0.12);
}

.blog-page__featured-media img,
.blog-page__card-media img,
.blog-article__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-page__featured-media img {
  aspect-ratio: 4 / 3;
}

.blog-page__meta {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.65rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #64748b;
}

.blog-page__featured-title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--blog-ink);
}

.blog-page__featured-title a {
  color: inherit;
  text-decoration: none;
}

.blog-page__featured-title a:hover {
  color: var(--color-primary, #0c27b3);
}

.blog-page__featured-excerpt {
  margin: 0 0 1.15rem;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--blog-muted);
}

.blog-page__read {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-primary, #0c27b3);
  text-decoration: none;
}

.blog-page__read:hover {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.blog-page__read .hgi,
.blog-page__read i,
.blog-page__cta-link .hgi,
.blog-page__cta-link i,
.blog-article__cta .btn .hgi,
.blog-article__cta .btn i {
  font-size: 0.9rem;
  color: currentColor !important;
}

.blog-page__list-band {
  padding: 2rem 0 3.5rem;
}

.blog-page__toolbar {
  display: grid;
  gap: 1.15rem;
  margin-bottom: 1.75rem;
}

.blog-page__toolbar-top {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
}

.blog-page__toolbar-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1.25rem;
}

.blog-page__section-title {
  margin: 0;
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  font-weight: 800;
  color: var(--blog-ink);
}

.blog-page__count {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: #64748b;
}

.blog-page__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-page__filter {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid var(--blog-line);
  background: #fff;
  color: var(--blog-ink);
  font: inherit;
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 0.45rem 0.7rem 0.45rem 0.85rem;
  border-radius: 999px;
  cursor: pointer;
}

.blog-page__filter-count {
  min-width: 1.35rem;
  height: 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.35rem;
  border-radius: 999px;
  background: rgba(12, 39, 179, 0.08);
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--color-primary, #0c27b3);
}

.blog-page__filter.is-active,
.blog-page__filter:hover {
  background: rgba(12, 39, 179, 0.08);
  border-color: rgba(12, 39, 179, 0.22);
  color: var(--color-primary, #0c27b3);
}

.blog-page__filter.is-active .blog-page__filter-count {
  background: var(--color-primary, #0c27b3);
  color: #fff;
}

.blog-page__sort-select {
  appearance: none;
  border: 1px solid var(--blog-line);
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23475569' d='M1.4.6 6 5.2 10.6.6 12 2 6 8 0 2z'/%3E%3C/svg%3E") no-repeat right 0.85rem center;
  background-size: 0.7rem;
  border-radius: 999px;
  padding: 0.55rem 2.2rem 0.55rem 0.95rem;
  font: inherit;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--blog-ink);
  cursor: pointer;
}

.blog-page__sort-select:focus {
  outline: 2px solid rgba(12, 39, 179, 0.35);
  outline-offset: 2px;
}

.blog-page__grid {
  display: grid;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
  min-height: 2rem;
}

@media (min-width: 720px) {
  .blog-page__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .blog-page__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.blog-page__grid--related {
  margin-top: 1.25rem;
}

.blog-page__empty {
  margin: 1.5rem 0 0;
  padding: 2rem 1.25rem;
  text-align: center;
  border-radius: 1.2rem;
  background: var(--blog-soft, #f3f7fd);
  border: 1px dashed rgba(12, 39, 179, 0.18);
}

.blog-page__empty[hidden] {
  display: none !important;
}

.blog-page__empty-title {
  margin: 0 0 0.4rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--blog-ink);
}

.blog-page__empty-lead {
  margin: 0 0 1.15rem;
  color: var(--blog-muted);
}

.blog-page__pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem 0.85rem;
  margin-top: 2rem;
}

.blog-page__pagination[hidden] {
  display: none !important;
}

.blog-page__pages {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-page__page-btn,
.blog-page__page-num {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 2.4rem;
  border: 1px solid var(--blog-line);
  background: #fff;
  color: var(--blog-ink);
  font: inherit;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 999px;
  cursor: pointer;
}

.blog-page__page-btn {
  padding: 0.45rem 0.95rem;
}

.blog-page__page-num {
  min-width: 2.4rem;
  padding: 0 0.65rem;
}

.blog-page__page-btn:hover,
.blog-page__page-num:hover,
.blog-page__page-num.is-active {
  background: rgba(12, 39, 179, 0.08);
  border-color: rgba(12, 39, 179, 0.22);
  color: var(--color-primary, #0c27b3);
}

.blog-page__page-num.is-active {
  background: var(--color-primary, #0c27b3);
  border-color: var(--color-primary, #0c27b3);
  color: #fff;
}

.blog-page__page-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.blog-page__page-btn .hgi,
.blog-page__page-btn i {
  font-size: 0.9rem;
  color: currentColor !important;
}

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

.blog-page__card {
  min-width: 0;
}

.blog-page__card[hidden] {
  display: none !important;
}

.blog-page__card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 1.2rem;
  background: #fff;
  border: 1px solid var(--blog-line);
  box-shadow: 0 10px 28px rgba(2, 18, 89, 0.05);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

@media (hover: hover) {
  .blog-page__card-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(2, 18, 89, 0.1);
  }
}

.blog-page__card-media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e8eef8;
}

.blog-page__card-body {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1.1rem 1.15rem 1.25rem;
  flex: 1;
}

.blog-page__card-title {
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--blog-ink);
}

.blog-page__card-excerpt {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--blog-muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.blog-page__read--inline {
  margin-top: 0.35rem;
}

.blog-page__cta-band {
  padding: 0 0 4.5rem;
}

.blog-page__cta {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, #002e58 0%, #0c27b3 55%, #1a4fd6 100%);
  box-shadow: 0 20px 50px rgba(2, 18, 89, 0.18);
}

.blog-page__cta-glow {
  position: absolute;
  inset: -30% 20% auto auto;
  width: 55%;
  height: 80%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(125, 211, 252, 0.28) 0%, transparent 70%);
  pointer-events: none;
}

.blog-page__cta-inner {
  position: relative;
  max-width: 40rem;
  margin: 0 auto;
  padding: 2.75rem 1.75rem;
  text-align: center;
}

.blog-page__cta-title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
}

.blog-page__cta-lead {
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
}

.blog-page__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem 1.35rem;
}

.blog-page__cta-btn {
  background: #fff !important;
  color: #002e58 !important;
}

.blog-page__cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #e0f2fe;
  text-decoration: none;
}

.blog-page__cta-link:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.blog-article__hero {
  padding: 2.75rem 0 1.5rem;
  background: linear-gradient(180deg, #eaf3ff 0%, #fff 100%);
}

.blog-article__hero-inner {
  max-width: 46rem;
}

.blog-article__title {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 3.2vw, 2.55rem);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--blog-ink);
}

.blog-article__lead {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--blog-muted);
}

.blog-article__layout {
  max-width: 48rem;
  padding: 0 0 4rem;
}

.blog-article__media {
  margin: 0 0 2rem;
  overflow: hidden;
  border-radius: 1.25rem;
  box-shadow: 0 16px 40px rgba(2, 18, 89, 0.1);
}

.blog-article__media img {
  aspect-ratio: 16 / 9;
}

.blog-article__body {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.blog-article__body p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--blog-muted);
  text-wrap: pretty;
}

.blog-article__cta {
  margin: 0 0 2.75rem;
  padding: 1.5rem 1.35rem;
  border-radius: 1.2rem;
  background: var(--blog-soft);
  border: 1px solid var(--blog-line);
}

.blog-article__cta-title {
  margin: 0 0 0.65rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--blog-ink);
}

.blog-article__cta p {
  margin: 0 0 1.15rem;
  color: var(--blog-muted);
  line-height: 1.6;
}

.blog-article__related {
  margin-bottom: 2rem;
}

.blog-article__back {
  margin: 0;
}

.blog-article__back a {
  font-weight: 700;
  color: var(--color-primary, #0c27b3);
  text-decoration: none;
}

.blog-article__back a:hover {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

@media (prefers-reduced-motion: reduce) {
  .blog-page__card-link {
    transition: none;
  }

  .blog-page__card-link:hover {
    transform: none;
  }
}

@media (max-width: 640px) {
  .blog-page__hero {
    padding: 2.25rem 0 2rem;
  }

  .blog-page__cta-inner {
    padding: 2.15rem 1.2rem;
  }
}

/* ——— Page Contact ——— */
.contact-page {
  --contact-ink: #0b1f33;
  --contact-muted: #3d4f63;
  --contact-soft: #f3f7fd;
  --contact-line: rgba(12, 39, 179, 0.12);
  background: #fff;
}

.contact-page__hero {
  position: relative;
  overflow: hidden;
  padding: 3rem 0 2.5rem;
  background: linear-gradient(145deg, #e8f1ff 0%, #f7faff 48%, #eef4ff 100%);
}

.contact-page__hero-glow {
  position: absolute;
  inset: auto -12% -45% 35%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(12, 39, 179, 0.14) 0%, transparent 68%);
  pointer-events: none;
}

.contact-page__hero-inner {
  position: relative;
}

.contact-page__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-primary, #0c27b3);
}

.contact-page__title {
  margin: 0 0 1rem;
  max-width: 40rem;
  font-size: clamp(2.1rem, 4vw, 3rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--contact-ink);
}

.contact-page__title-line {
  display: block;
}

.contact-page__highlight {
  color: var(--color-primary, #0c27b3);
}

.contact-page__lead {
  margin: 0 0 0.75rem;
  max-width: 40rem;
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--contact-muted);
  text-wrap: pretty;
}

.contact-page__intro {
  margin: 0 0 1rem;
  max-width: 40rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #64748b;
}

.contact-page__hours {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(12, 39, 179, 0.08);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-primary, #0c27b3);
}

.contact-page__hours .hgi,
.contact-page__hours i {
  font-size: 1rem;
  color: currentColor !important;
}

.contact-page__band {
  padding: 2.5rem 0 4.5rem;
}

.contact-page__layout {
  display: grid;
  gap: 2rem;
}

@media (min-width: 960px) {
  .contact-page__layout {
    grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
    gap: 3rem;
    align-items: start;
  }
}

.contact-page__section-title {
  margin: 0 0 1rem;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 800;
  color: var(--contact-ink);
}

.contact-page__section-title--spaced {
  margin-top: 2rem;
}

.contact-page__channels,
.contact-page__offices {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-page__channel {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: center;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid var(--contact-line);
  box-shadow: 0 8px 24px rgba(2, 18, 89, 0.04);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

@media (hover: hover) {
  .contact-page__channel:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(2, 18, 89, 0.08);
  }
}

.contact-page__channel-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.8rem;
  background: rgba(12, 39, 179, 0.08);
  color: var(--color-primary, #0c27b3);
}

.contact-page__channel-icon .hgi,
.contact-page__channel-icon i {
  font-size: 1.15rem;
  color: currentColor !important;
}

.contact-page__channel-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #64748b;
}

.contact-page__channel-value {
  display: block;
  font-size: 0.9875rem;
  font-weight: 700;
  color: var(--contact-ink);
}

.contact-page__office {
  padding: 1.1rem 1.15rem;
  border-radius: 1.1rem;
  background: var(--contact-soft);
  border: 1px solid var(--contact-line);
}

.contact-page__office-top {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 0.55rem;
}

.contact-page__office-flag {
  font-size: 1.35rem;
  line-height: 1;
}

.contact-page__office-top strong {
  display: block;
  font-size: 1rem;
  color: var(--contact-ink);
}

.contact-page__office-role {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-primary, #0c27b3);
}

.contact-page__office-address {
  margin: 0 0 0.85rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--contact-muted);
}

.contact-page__office-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

.contact-page__office-actions a {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-primary, #0c27b3);
  text-decoration: none;
}

.contact-page__office-actions a:hover {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.contact-page__form-wrap {
  padding: 1.5rem;
  border-radius: 1.35rem;
  background: #fff;
  border: 1px solid var(--contact-line);
  box-shadow: 0 14px 40px rgba(2, 18, 89, 0.06);
}

@media (min-width: 720px) {
  .contact-page__form-wrap {
    padding: 1.85rem 1.75rem;
  }
}

.contact-page__wizard-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
  margin-bottom: 0.35rem;
}

.contact-page__wizard-head .contact-page__section-title {
  margin-bottom: 0.35rem;
}

.contact-page__step-meta {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #64748b;
  white-space: nowrap;
}

.contact-page__progress {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
  margin: 0 0 1.35rem;
  padding: 0;
  list-style: none;
}

.contact-page__progress-item {
  display: grid;
  gap: 0.35rem;
  justify-items: center;
  text-align: center;
  opacity: 0.45;
}

.contact-page__progress-item.is-active,
.contact-page__progress-item.is-done {
  opacity: 1;
}

.contact-page__progress-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  background: rgba(12, 39, 179, 0.08);
  color: var(--color-primary, #0c27b3);
  font-size: 0.75rem;
  font-weight: 800;
}

.contact-page__progress-item.is-active .contact-page__progress-dot,
.contact-page__progress-item.is-done .contact-page__progress-dot {
  background: var(--color-primary, #0c27b3);
  color: #fff;
}

.contact-page__progress-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: #64748b;
}

.contact-page__progress-item.is-active .contact-page__progress-label {
  color: var(--contact-ink);
}

.contact-page__form-hint {
  margin: 0;
  font-size: 0.875rem;
  color: #64748b;
}

.contact-page__step[hidden] {
  display: none !important;
}

.contact-page__intents {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  border: 0;
  min-inline-size: 0;
}

@media (min-width: 640px) {
  .contact-page__intents {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.contact-page__intent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  text-align: left;
  padding: 0.95rem;
  border-radius: 1rem;
  border: 1px solid var(--contact-line);
  background: #fff;
  cursor: pointer;
  font: inherit;
  color: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

@media (hover: hover) {
  .contact-page__intent:hover {
    border-color: rgba(12, 39, 179, 0.28);
    box-shadow: 0 10px 24px rgba(2, 18, 89, 0.06);
    transform: translateY(-1px);
  }
}

.contact-page__intent.is-selected {
  border-color: rgba(12, 39, 179, 0.45);
  background: rgba(12, 39, 179, 0.05);
  box-shadow: 0 0 0 2px rgba(12, 39, 179, 0.12);
}

.contact-page__intent-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.8rem;
  background: rgba(12, 39, 179, 0.08);
  color: var(--color-primary, #0c27b3);
}

.contact-page__intent-icon .hgi,
.contact-page__intent-icon i {
  font-size: 1.1rem;
  color: currentColor !important;
}

.contact-page__intent-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--contact-ink);
}

.contact-page__intent-desc {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.8rem;
  line-height: 1.4;
  color: #64748b;
}

.contact-page__intent-chip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  margin: 0 0 1rem;
  padding: 0.65rem 0.85rem;
  border-radius: 0.85rem;
  background: rgba(12, 39, 179, 0.06);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-primary, #0c27b3);
}

.contact-page__intent-chip[hidden] {
  display: none !important;
}

.contact-page__intent-chip button {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--contact-ink);
  font: inherit;
  font-size: 0.8125rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.15em;
  cursor: pointer;
  padding: 0;
}

.contact-page__success {
  margin: 0 0 1.15rem;
  padding: 1rem 1.1rem;
  border-radius: 0.95rem;
  background: rgba(0, 171, 85, 0.08);
  border: 1px solid rgba(0, 171, 85, 0.18);
}

.contact-page__success[hidden] {
  display: none !important;
}

.contact-page__success-title {
  margin: 0 0 0.3rem;
  font-weight: 800;
  color: #04535c;
}

.contact-page__success-lead {
  margin: 0;
  font-size: 0.925rem;
  line-height: 1.55;
  color: #04535c;
}

.contact-page__form-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .contact-page__form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-page__field--full {
    grid-column: 1 / -1;
  }
}

.contact-page__field {
  display: grid;
  gap: 0.4rem;
}

.contact-page__field label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--contact-ink);
}

.contact-page__field input,
.contact-page__field select,
.contact-page__field textarea {
  width: 100%;
  appearance: none;
  border: 1px solid rgba(12, 39, 179, 0.16);
  background: #fff;
  border-radius: 0.85rem;
  padding: 0.8rem 0.95rem;
  font: inherit;
  font-size: 0.975rem;
  color: var(--contact-ink);
}

.contact-page__field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23475569' d='M1.4.6 6 5.2 10.6.6 12 2 6 8 0 2z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.95rem center;
  background-size: 0.7rem;
  padding-right: 2.2rem;
}

.contact-page__field textarea {
  resize: vertical;
  min-height: 8rem;
}

.contact-page__field input:focus,
.contact-page__field select:focus,
.contact-page__field textarea:focus {
  outline: 2px solid rgba(12, 39, 179, 0.3);
  outline-offset: 2px;
  border-color: rgba(12, 39, 179, 0.35);
}

.contact-page__consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: start;
  margin: 1.15rem 0 0.85rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--contact-muted);
}

.contact-page__consent input {
  margin-top: 0.2rem;
}

.contact-page__consent a {
  color: var(--color-primary, #0c27b3);
  font-weight: 700;
  text-decoration: none;
}

.contact-page__consent a:hover {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.contact-page__error {
  margin: 0.85rem 0;
  padding: 0.75rem 0.9rem;
  border-radius: 0.75rem;
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.18);
  color: #991b1b;
  font-size: 0.9rem;
  font-weight: 600;
}

.contact-page__error[hidden] {
  display: none !important;
}

.contact-page__form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.15rem;
  margin-top: 0.35rem;
}

.contact-page__form-actions .btn[hidden],
.contact-page__form-actions .contact-page__secondary[hidden] {
  display: none !important;
}

.contact-page__form-actions .btn .hgi,
.contact-page__form-actions .btn i,
.contact-page__secondary .hgi,
.contact-page__secondary i {
  font-size: 0.9rem;
  color: currentColor !important;
}

.contact-page__secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-primary, #0c27b3);
  text-decoration: none;
  cursor: pointer;
}

.contact-page__secondary:hover {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

@media (prefers-reduced-motion: reduce) {
  .contact-page__channel,
  .contact-page__intent {
    transition: none;
  }

  .contact-page__channel:hover,
  .contact-page__intent:hover {
    transform: none;
  }
}

@media (max-width: 640px) {
  .contact-page__hero {
    padding: 2.25rem 0 2rem;
  }

  .contact-page__form-wrap {
    padding: 1.2rem;
  }

  .contact-page__progress-label {
    display: none;
  }
}

/* ——— Page Logement ——— */
.logement-page {
  --logement-ink: #0b1f33;
  --logement-muted: #3d4f63;
  --logement-soft: #f4f7fb;
  --logement-line: rgba(12, 39, 179, 0.12);
  --logement-accent: #0c27b3;
  background: var(--logement-soft);
}

.logement-page__hero {
  position: relative;
  overflow: hidden;
  padding: 2.5rem 0 3.5rem;
  background:
    radial-gradient(ellipse 70% 80% at 85% 20%, rgba(12, 39, 179, 0.12), transparent 55%),
    linear-gradient(145deg, #eaf1ff 0%, #f8fbff 52%, #eef4ff 100%);
}

.logement-page__hero-glow {
  position: absolute;
  inset: auto -10% -40% 40%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(12, 39, 179, 0.12) 0%, transparent 68%);
  pointer-events: none;
}

.logement-page__hero-grid {
  position: relative;
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .logement-page__hero-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 2.5rem;
  }
}

.logement-page__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-primary, #0c27b3);
}

.logement-page__title {
  margin: 0 0 1rem;
  max-width: 22ch;
  font-size: clamp(2.15rem, 4.2vw, 3.15rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--logement-ink);
}

.logement-page__title-line {
  display: block;
}

.logement-page__highlight {
  color: var(--color-primary, #0c27b3);
}

.logement-page__lead {
  margin: 0;
  max-width: 36rem;
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--logement-muted);
  text-wrap: pretty;
}

.logement-page__hero-visual {
  position: relative;
  min-height: 12rem;
  display: grid;
  place-items: center;
}

.logement-page__hero-orb {
  position: absolute;
  width: min(100%, 18rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.9), transparent 45%),
    radial-gradient(circle at 60% 60%, rgba(12, 39, 179, 0.22), rgba(0, 171, 85, 0.12) 55%, transparent 72%);
  filter: blur(2px);
}

.logement-page__hero-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  width: min(100%, 20rem);
  padding: 1.15rem 1.2rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(12, 39, 179, 0.1);
  box-shadow: 0 18px 40px rgba(2, 18, 89, 0.12);
  animation: logement-float 5.5s ease-in-out infinite;
}

@keyframes logement-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@media (prefers-reduced-motion: reduce) {
  .logement-page__hero-card {
    animation: none;
  }
}

.logement-page__hero-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.85rem;
  background: rgba(12, 39, 179, 0.1);
  color: var(--color-primary, #0c27b3);
}

.logement-page__hero-check .hgi,
.logement-page__hero-check i {
  font-size: 1.35rem;
  color: currentColor !important;
}

.logement-page__hero-card-title {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  font-weight: 800;
  color: var(--logement-ink);
}

.logement-page__hero-card-text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--logement-muted);
}

/* Explorer */
.logement-explorer {
  margin-top: -1.75rem;
  padding-bottom: 2.5rem;
}

.logement-explorer__filters {
  position: relative;
  z-index: 20;
  margin-bottom: 1.25rem;
  padding: 1rem 1.1rem;
  border-radius: 1.35rem;
  background: #fff;
  border: 1px solid var(--logement-line);
  box-shadow: 0 16px 40px rgba(2, 18, 89, 0.08);
}

.logement-explorer__filters-inner {
  display: grid;
  gap: 0.9rem;
  align-items: end;
}

@media (min-width: 900px) {
  .logement-explorer__filters-inner {
    grid-template-columns: repeat(3, minmax(0, 1fr)) repeat(2, minmax(7.5rem, auto)) auto;
    gap: 0.85rem 1rem;
    align-items: end;
  }
}

@media (min-width: 1200px) {
  .logement-explorer__filters-inner {
    grid-template-columns: minmax(8rem, 1fr) minmax(8rem, 1fr) minmax(14rem, 1.4fr) minmax(7rem, auto) minmax(7rem, auto) auto;
  }
}

.logement-explorer__field {
  display: grid;
  gap: 0.35rem;
  margin: 0;
}

.logement-explorer__label,
.logement-explorer__sort-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #64748b;
}

.logement-explorer__field select,
.logement-explorer__sort select {
  appearance: none;
  width: 100%;
  border: 1px solid var(--logement-line);
  background: #f8fafc url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23475569' d='M1.4.6 6 5.2 10.6.6 12 2 6 8 0 2z'/%3E%3C/svg%3E") no-repeat right 0.85rem center;
  background-size: 0.7rem;
  border-radius: 0.9rem;
  padding: 0.75rem 2.2rem 0.75rem 0.95rem;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--logement-ink);
  cursor: pointer;
  display: block !important;
  opacity: 1 !important;
  position: relative !important;
  float: none !important;
  height: auto !important;
  min-height: 2.85rem;
}

.logement-explorer__field .nice-select,
.logement-explorer__sort .nice-select {
  display: none !important;
}






.logement-explorer__budget-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
}

.logement-explorer__budget-sep {
  color: #94a3b8;
  font-weight: 700;
}

.logement-explorer__stepper {
  display: inline-grid;
  grid-template-columns: 2.1rem minmax(3.4rem, auto) 2.1rem;
  align-items: center;
  gap: 0.15rem;
  padding: 0.2rem;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid var(--logement-line);
}

.logement-explorer__stepper--solo {
  width: 100%;
  grid-template-columns: 2.25rem 1fr 2.25rem;
}

.logement-explorer__stepper button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  margin: 0;
  border: none;
  border-radius: 999px;
  background: #fff;
  color: var(--color-primary, #0c27b3);
  font: inherit;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(2, 18, 89, 0.06);
}

.logement-explorer__stepper button:hover:not(:disabled) {
  background: rgba(12, 39, 179, 0.08);
}

.logement-explorer__stepper button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.logement-explorer__stepper output {
  display: block;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--logement-ink);
  white-space: nowrap;
}

.logement-explorer__actions {
  display: grid;
  gap: 0.45rem;
}

@media (min-width: 900px) {
  .logement-explorer__actions {
    justify-items: stretch;
  }
}

.logement-explorer__reset {
  appearance: none;
  border: none;
  background: transparent;
  color: #64748b;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.logement-explorer__reset:hover {
  color: var(--color-primary, #0c27b3);
}


.logement-explorer__search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  min-height: 3rem;
  border-radius: 999px !important;
  white-space: nowrap;
}

@media (min-width: 800px) {
  .logement-explorer__search {
    width: auto;
    padding-inline: 1.35rem;
  }
}

.logement-explorer__search .hgi,
.logement-explorer__search i {
  font-size: 1rem;
  color: currentColor !important;
}

.logement-explorer__mobile-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem;
  margin: 0 1rem 0.75rem;
}

@media (min-width: 980px) {
  .logement-explorer__mobile-tabs {
    display: none;
  }
}

.logement-explorer__tab {
  appearance: none;
  border: 1px solid var(--logement-line);
  background: #fff;
  border-radius: 999px;
  padding: 0.55rem 0.85rem;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--logement-muted);
  cursor: pointer;
}

.logement-explorer__tab.is-active {
  background: var(--color-primary, #0c27b3);
  border-color: transparent;
  color: #fff;
}

.logement-explorer__split {
  display: grid;
  min-height: min(74vh, 54rem);
  background: #fff;
  border-top: 1px solid var(--logement-line);
}

@media (min-width: 980px) {
  .logement-explorer__split {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    border: 1px solid var(--logement-line);
    border-radius: 1.35rem;
    overflow: hidden;
    margin: 0 1.25rem;
    box-shadow: 0 12px 36px rgba(2, 18, 89, 0.05);
  }
}

@media (min-width: 1200px) {
  .logement-explorer__split {
    margin: 0 auto;
    max-width: calc(100% - 2.5rem);
  }
}

.logement-explorer__list-pane {
  padding: 1.15rem 1rem 2rem;
  overflow: auto;
  background: #fff;
}

@media (min-width: 980px) {
  .logement-explorer__list-pane {
    padding: 1.25rem 1.2rem 2rem;
    max-height: calc(100vh - 7.5rem);
  }
}

.logement-explorer__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.logement-explorer__results {
  margin: 0;
  font-size: 1rem;
  color: var(--logement-muted);
}

.logement-explorer__results strong {
  color: var(--logement-ink);
  font-size: 1.1rem;
  font-weight: 800;
}

.logement-explorer__sort {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
}

.logement-explorer__sort select {
  min-width: 10.5rem;
  background-color: #fff;
}

.logement-explorer__grid {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 640px) {
  .logement-explorer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.logement-explorer__card[hidden] {
  display: none !important;
}

.logement-explorer__card.is-active .logement-explorer__card-inner {
  border-color: rgba(12, 39, 179, 0.42);
  box-shadow: 0 14px 34px rgba(12, 39, 179, 0.14);
}

.logement-explorer__card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 1.2rem;
  background: #fff;
  border: 1px solid var(--logement-line);
  box-shadow: 0 8px 24px rgba(2, 18, 89, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

@media (hover: hover) {
  .logement-explorer__card:hover .logement-explorer__card-inner {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(2, 18, 89, 0.09);
  }
}

.logement-explorer__card-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: #e8eef8;
}

.logement-explorer__card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logement-explorer__price-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  display: inline-flex;
  align-items: baseline;
  gap: 0.2rem;
  padding: 0.4rem 0.65rem;
  border-radius: 0.7rem;
  background: rgba(11, 31, 51, 0.88);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
}

.logement-explorer__price-badge small {
  font-size: 0.68rem;
  font-weight: 600;
  opacity: 0.85;
}

.logement-explorer__match-badge {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  padding: 0.32rem 0.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  font-size: 0.7rem;
  font-weight: 800;
  color: #04535c;
  box-shadow: 0 4px 12px rgba(2, 18, 89, 0.08);
}

.logement-explorer__fav {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #64748b;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(2, 18, 89, 0.1);
}

.logement-explorer__fav .hgi,
.logement-explorer__fav i {
  font-size: 1rem;
  color: currentColor !important;
}

.logement-explorer__fav.is-active,
.logement-explorer__fav[aria-pressed='true'] {
  color: #e11d48;
}

.logement-explorer__card-body {
  display: grid;
  gap: 0.45rem;
  padding: 0.95rem 1rem 1.05rem;
  flex: 1;
}

.logement-explorer__card-link {
  display: grid;
  gap: 0.2rem;
  text-decoration: none;
  color: inherit;
}

.logement-explorer__card-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--logement-ink);
}

.logement-explorer__card-city {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
}

.logement-explorer__card-meta {
  font-size: 0.84rem;
  color: #64748b;
}

.logement-explorer__matches {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.logement-explorer__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  padding: 0.18rem 0.42rem;
  border-radius: 999px;
  background: rgba(0, 171, 85, 0.08);
  font-size: 0.68rem;
  font-weight: 700;
  color: #04535c;
}

.logement-explorer__chip .hgi,
.logement-explorer__chip i {
  font-size: 0.72rem;
  color: #00ab55 !important;
}

.logement-explorer__card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.2rem;
  padding-top: 0.55rem;
  border-top: 1px solid rgba(12, 39, 179, 0.08);
}

.logement-explorer__score {
  display: inline-flex;
  align-items: baseline;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.logement-explorer__score strong {
  font-size: 1.05rem;
  color: var(--color-primary, #0c27b3);
}

.logement-explorer__score span {
  font-size: 0.75rem;
  font-weight: 700;
  color: #64748b;
}

.logement-explorer__more {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-primary, #0c27b3);
  text-decoration: none;
  white-space: nowrap;
}

.logement-explorer__more:hover {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.logement-explorer__more .hgi,
.logement-explorer__more i {
  font-size: 0.85rem;
  color: currentColor !important;
}

.logement-explorer__empty {
  margin-top: 1.25rem;
  padding: 1.75rem 1.25rem;
  text-align: center;
  border-radius: 1.15rem;
  background: var(--logement-soft);
  border: 1px dashed rgba(12, 39, 179, 0.18);
}

.logement-explorer__empty[hidden] {
  display: none !important;
}

.logement-explorer__empty p {
  margin: 0 0 1rem;
  color: var(--logement-muted);
}

.logement-explorer__map-pane {
  position: relative;
  min-height: min(70vh, 36rem);
  border-top: 1px solid var(--logement-line);
  background: #dbe7f5;
}

@media (min-width: 980px) {
  .logement-explorer__map-pane {
    border-top: none;
    border-left: 1px solid var(--logement-line);
    min-height: calc(100vh - 7.5rem);
    height: calc(100vh - 7.5rem);
    position: sticky;
    top: 4.5rem;
    align-self: start;
  }
}

.logement-explorer__map-shell {
  position: absolute;
  inset: 0;
  min-height: inherit;
}

.logement-explorer__map-filters {
  position: absolute;
  z-index: 500;
  top: 0.85rem;
  right: 0.85rem;
  left: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(12, 39, 179, 0.12);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 22px rgba(2, 18, 89, 0.08);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--logement-ink);
  cursor: pointer;
}

.logement-explorer__map .leaflet-top.leaflet-left {
  top: 0.75rem;
  left: 0.75rem;
}

.logement-explorer__map .leaflet-bottom.leaflet-right {
  right: 0.75rem;
  bottom: 4.5rem; /* au-dessus de la légende */
}

.logement-explorer__map .leaflet-control-zoom {
  border: none !important;
  box-shadow: 0 8px 22px rgba(2, 18, 89, 0.12) !important;
  overflow: hidden;
  border-radius: 0.75rem !important;
}

.logement-explorer__map .leaflet-control-zoom a {
  width: 2.15rem !important;
  height: 2.15rem !important;
  line-height: 2.15rem !important;
  color: var(--logement-ink, #0b1f33) !important;
  font-weight: 700 !important;
}

.logement-explorer__map-filters .hgi,
.logement-explorer__map-filters i {
  color: var(--color-primary, #0c27b3) !important;
}

.logement-explorer__map-legend {
  position: absolute;
  z-index: 500;
  right: 0.85rem;
  bottom: 0.85rem;
  display: grid;
  gap: 0.35rem;
  padding: 0.65rem 0.75rem;
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(12, 39, 179, 0.1);
  box-shadow: 0 8px 22px rgba(2, 18, 89, 0.08);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--logement-muted);
}

.logement-explorer__map-legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.logement-explorer__legend-dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px rgba(2, 18, 89, 0.12);
}

.logement-explorer__legend-dot--cluster {
  background: var(--color-primary, #0c27b3);
}

.logement-explorer__legend-dot--active {
  background: #00ab55;
}

.logement-explorer__map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #e8eef5;
}

.logement-explorer__map .leaflet-container {
  width: 100%;
  height: 100%;
  font: inherit;
  background: #dbe4ef;
}

.logement-map-admin-label {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  color: #0a2199;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-shadow:
    0 0 4px rgba(255, 255, 255, 0.95),
    0 1px 0 rgba(255, 255, 255, 0.9),
    1px 0 0 rgba(255, 255, 255, 0.9),
    -1px 0 0 rgba(255, 255, 255, 0.9),
    0 -1px 0 rgba(255, 255, 255, 0.9);
  pointer-events: none;
  white-space: nowrap;
}

.logement-map-admin-label--region {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.9;
}

.logement-map-admin-label--department {
  font-size: 0.7rem;
  font-weight: 700;
  color: #1230a8;
  opacity: 0.85;
}

.logement-map-admin-label::before {
  display: none !important;
}

.logement-explorer__map-error {
  margin: 0;
  padding: 2rem 1.25rem;
  text-align: center;
  color: var(--logement-muted);
  font-weight: 700;
}

.logement-map-pin {
  background: transparent;
  border: none;
}

.logement-map-pin__inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  background: var(--color-primary, #0c27b3);
  color: #fff;
  box-shadow: 0 8px 18px rgba(12, 39, 179, 0.35);
  border: 2px solid #fff;
}

.logement-map-pin.is-active .logement-map-pin__inner {
  background: #00ab55;
  transform: scale(1.12);
}

.logement-map-cluster-wrap {
  background: transparent;
  border: none;
}

.logement-map-cluster {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--color-primary, #0c27b3);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  border: 3px solid #fff;
  box-shadow: 0 10px 24px rgba(12, 39, 179, 0.32);
}

.logement-map-cluster--sm {
  font-size: 0.78rem;
}

.logement-map-cluster--md {
  font-size: 0.88rem;
}

.logement-map-cluster--lg {
  font-size: 0.95rem;
  background: linear-gradient(145deg, #0c27b3, #1a4fd6);
}

.marker-cluster {
  background: transparent !important;
}

.marker-cluster div {
  background: transparent !important;
}

.logement-map-popup-wrap .leaflet-popup-content-wrapper {
  padding: 0;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(2, 18, 89, 0.16);
}

.logement-map-popup-wrap .leaflet-popup-content {
  margin: 0;
  width: 220px !important;
}

.logement-map-popup-wrap .leaflet-popup-tip {
  background: #fff;
}

.logement-map-popup img {
  display: block;
  width: 100%;
  height: 110px;
  object-fit: cover;
}

.logement-map-popup__body {
  display: grid;
  gap: 0.25rem;
  padding: 0.7rem 0.8rem 0.85rem;
}

.logement-map-popup__body strong {
  font-size: 0.9rem;
  color: var(--logement-ink);
}

.logement-map-popup__body span {
  font-size: 0.75rem;
  color: #64748b;
}

.logement-map-popup__body a {
  margin-top: 0.2rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-primary, #0c27b3);
  text-decoration: none;
}

@media (max-width: 979px) {
  .logement-explorer__split[data-view='list'] .logement-explorer__map-pane {
    display: none;
  }

  .logement-explorer__split[data-view='map'] .logement-explorer__list-pane {
    display: none;
  }

  .logement-explorer__split[data-view='map'] .logement-explorer__map-pane,
  .logement-explorer__split[data-view='map'] .logement-explorer__map {
    min-height: min(70vh, 34rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .logement-explorer__card-inner {
    transition: none;
  }

  .logement-explorer__card:hover .logement-explorer__card-inner {
    transform: none;
  }
}

@media (max-width: 640px) {
  .logement-page__hero {
    padding: 2rem 0 3rem;
  }
}

/* —— Logement détail (mockup) —— */
.logement-detail {
  --ld-ink: #0b1f33;
  --ld-muted: #5a6b82;
  --ld-line: rgba(12, 39, 179, 0.12);
  --ld-green: #1a9b5c;
  --ld-green-bg: #e8f6ef;
  padding: 1.75rem 0 4rem;
  background: #fff;
}

.logement-detail__layout {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 1100px) {
  .logement-detail__layout {
    grid-template-columns: minmax(0, 1.65fr) minmax(18rem, 0.9fr);
    gap: 1.75rem;
    align-items: start;
  }
}

.logement-detail__gallery {
  display: grid;
  gap: 0.5rem;
}

@media (min-width: 720px) {
  .logement-detail__gallery {
    grid-template-columns: minmax(0, 1fr) 10.5rem;
    height: clamp(17.5rem, 38vw, 26rem);
    align-items: stretch;
  }
}

.logement-detail__gallery-main {
  position: relative;
  margin: 0;
  border-radius: 1rem;
  overflow: hidden;
  background: #dbe4ef;
  min-height: 14rem;
  height: 100%;
}

.logement-detail__gallery-main img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.logement-detail__gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  min-height: 0;
}

@media (min-width: 720px) {
  .logement-detail__gallery-thumbs {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, minmax(0, 1fr));
    height: 100%;
  }
}

.logement-detail__thumb {
  position: relative;
  margin: 0;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 0.85rem;
  overflow: hidden;
  cursor: pointer;
  background: #dbe4ef;
  min-height: 4.5rem;
  height: 100%;
}

.logement-detail__thumb.is-active {
  border-color: var(--color-primary, #0c27b3);
}

.logement-detail__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.logement-detail__match-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--color-primary, #0c27b3);
  font-size: 0.78rem;
  font-weight: 800;
  box-shadow: 0 6px 18px rgba(2, 18, 89, 0.1);
}

.logement-detail__fav {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 2.4rem;
  height: 2.4rem;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: #7a8799;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(2, 18, 89, 0.1);
}

.logement-detail__fav.is-active,
.logement-detail__fav[aria-pressed='true'] {
  color: #e11d48;
}

.logement-detail__gallery-count {
  position: absolute;
  left: 0.85rem;
  bottom: 0.85rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(11, 31, 51, 0.72);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
}

.logement-detail__header {
  margin-top: 1.35rem;
}

.logement-detail__eyebrow {
  margin: 0 0 0.45rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ld-muted);
}

.logement-detail__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  line-height: 1.15;
  color: var(--color-primary, #0c27b3);
}

.logement-detail__lead {
  margin: 0 0 0.9rem;
  max-width: 40rem;
  color: var(--ld-muted);
  font-size: 1rem;
  line-height: 1.55;
}

.logement-detail__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.logement-detail__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--ld-green-bg);
  color: var(--ld-green);
  font-size: 0.8rem;
  font-weight: 700;
}

.logement-detail__chip .hgi {
  font-size: 0.85rem;
}

.logement-detail__specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 1rem;
  margin: 1.35rem 0;
  padding: 1rem 1.05rem;
  border-radius: 1rem;
  border: 1px solid var(--ld-line);
  background: #fafbfd;
}

@media (min-width: 720px) {
  .logement-detail__specs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .logement-detail__specs {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

.logement-detail__spec {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  min-width: 0;
}

.logement-detail__spec > .hgi {
  color: var(--color-primary, #0c27b3);
  font-size: 1.15rem;
  margin-top: 0.1rem;
}

.logement-detail__spec span {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ld-muted);
}

.logement-detail__spec strong {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.92rem;
  color: var(--ld-ink);
  font-weight: 700;
}

.logement-detail__info {
  font-size: 0.85rem !important;
  color: var(--ld-muted);
}

.logement-detail__benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-bottom: 1.35rem;
}

@media (min-width: 800px) {
  .logement-detail__benefits {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.logement-detail__benefit {
  display: grid;
  gap: 0.25rem;
  justify-items: start;
  padding: 0.35rem 0;
}

.logement-detail__benefit > .hgi {
  color: var(--color-primary, #0c27b3);
  font-size: 1.35rem;
  margin-bottom: 0.15rem;
}

.logement-detail__benefit strong {
  font-size: 0.88rem;
  color: var(--color-primary, #0c27b3);
}

.logement-detail__benefit span {
  font-size: 0.78rem;
  color: var(--ld-muted);
  line-height: 1.35;
}

.logement-detail__panels {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

@media (min-width: 900px) {
  .logement-detail__panels {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.logement-detail__panel {
  padding: 1.1rem 1rem;
  border-radius: 1rem;
  border: 1px solid var(--ld-line);
  background: #fff;
}

.logement-detail__panel h2 {
  margin: 0 0 0.85rem;
  font-size: 0.98rem;
  color: var(--ld-ink);
  line-height: 1.3;
}

.logement-detail__panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.logement-detail__panel li {
  display: flex;
  gap: 0.45rem;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--ld-ink);
  line-height: 1.4;
}

.logement-detail__panel li > .hgi {
  color: var(--ld-green);
  margin-top: 0.1rem;
}

.logement-detail__amenity-list li > .hgi,
.logement-detail__nearby-list li > .hgi {
  color: var(--color-primary, #0c27b3);
}

.logement-detail__nearby-list span {
  display: grid;
  gap: 0.1rem;
}

.logement-detail__nearby-list em {
  font-style: normal;
  color: var(--ld-muted);
  font-size: 0.8rem;
}

.logement-detail__extra-cards {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 720px) {
  .logement-detail__extra-cards {
    grid-template-columns: 1fr 1fr;
  }
}

.logement-detail__extra {
  display: flex;
  gap: 0.85rem;
  padding: 1.05rem 1rem;
  border-radius: 1rem;
  border: 1px solid var(--ld-line);
  background: #f7f9fc;
}

.logement-detail__extra > .hgi {
  color: var(--color-primary, #0c27b3);
  font-size: 1.4rem;
  flex-shrink: 0;
}

.logement-detail__extra h2 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  color: var(--ld-ink);
}

.logement-detail__extra p {
  margin: 0 0 0.5rem;
  font-size: 0.85rem;
  color: var(--ld-muted);
  line-height: 1.45;
}

.logement-detail__extra a {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-primary, #0c27b3);
  text-decoration: none;
}

.logement-detail__extra a:hover {
  text-decoration: underline;
}

.logement-detail__aside {
  display: grid;
  gap: 1rem;
}

@media (min-width: 1100px) {
  .logement-detail__aside {
    position: sticky;
    top: 5.5rem;
  }
}

.logement-detail__book,
.logement-detail__location,
.logement-detail__similar {
  padding: 1.2rem 1.15rem;
  border-radius: 1.1rem;
  border: 1px solid var(--ld-line);
  background: #fff;
  box-shadow: 0 14px 36px rgba(2, 18, 89, 0.07);
}

.logement-detail__price {
  margin: 0 0 0.25rem;
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}

.logement-detail__price strong {
  font-size: 1.85rem;
  color: var(--color-primary, #0c27b3);
}

.logement-detail__price span {
  color: var(--ld-muted);
  font-weight: 600;
}

.logement-detail__score {
  margin: 0 0 0.55rem;
  color: var(--color-primary, #0c27b3);
  font-weight: 800;
  font-size: 0.92rem;
}

.logement-detail__book-lead {
  margin: 0 0 1.1rem;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--ld-muted);
}

.logement-detail__actions {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.logement-detail__cta {
  width: 100%;
  justify-content: center;
  margin: 0;
  border-radius: 999px;
  min-height: 2.85rem;
}

.logement-detail__cta-attestation {
  width: 100%;
  justify-content: center;
  gap: 0.45rem;
  margin: 0;
  border-radius: 999px;
  min-height: 2.85rem;
  background: #fff;
  color: var(--color-primary, #0c27b3);
  border: 1.5px solid rgba(12, 39, 179, 0.35);
  box-shadow: none;
  font-weight: 700;
}

.logement-detail__cta-attestation:hover {
  background: rgba(12, 39, 179, 0.04);
}

.logement-detail__cta-attestation .hgi {
  font-size: 1.05rem;
}

.logement-detail__cta-link {
  display: block;
  text-align: center;
  padding: 0.35rem 0.25rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-primary, #0c27b3);
  text-decoration: none;
}

.logement-detail__cta-link:hover {
  text-decoration: underline;
}

.logement-detail__trust {
  margin: 0;
  padding: 0.85rem 0 0;
  list-style: none;
  display: grid;
  gap: 0.4rem;
  border-top: 1px solid var(--ld-line);
}

.logement-detail__trust li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--ld-muted);
  font-weight: 600;
}

.logement-detail__trust .hgi {
  color: var(--color-primary, #0c27b3);
}

.logement-detail__location h2,
.logement-detail__similar h2 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  color: var(--ld-ink);
}

.logement-detail__map {
  border-radius: 0.85rem;
  overflow: hidden;
  border: 1px solid var(--ld-line);
  aspect-ratio: 16 / 10;
  background: #e8eef5;
}

.logement-detail__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.logement-detail__walk {
  margin: 0.7rem 0 0.55rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ld-ink);
}

.logement-detail__transports {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.85rem;
}

.logement-detail__transports li {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ld-muted);
}

.logement-detail__transports .hgi {
  color: var(--color-primary, #0c27b3);
}

.logement-detail__similar ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.logement-detail__similar-card {
  display: grid;
  grid-template-columns: 5.5rem minmax(0, 1fr);
  gap: 0.7rem;
  text-decoration: none;
  color: inherit;
  align-items: center;
}

.logement-detail__similar-card img {
  width: 5.5rem;
  height: 4.1rem;
  object-fit: cover;
  border-radius: 0.65rem;
  display: block;
}

.logement-detail__similar-card span {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
}

.logement-detail__similar-card strong {
  font-size: 0.9rem;
  color: var(--color-primary, #0c27b3);
}

.logement-detail__similar-card em {
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ld-ink);
}

.logement-detail__similar-card small {
  font-size: 0.75rem;
  color: var(--color-primary, #0c27b3);
  font-weight: 700;
}

@media (max-width: 719px) {
  .logement-detail {
    padding-top: 1.1rem;
  }
}
