/* =========================
   VARIABLES
   ========================= */
 
:root {
  --primary: #4560cb;
  --primary-dark: #354fb7;
  --text: #151826;
  --muted: #5b6475;
  --bg: #eef1f4;
  --card: #ffffff;
  --line: #d8dee8;
 
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
 
  --shadow-soft: 0 18px 40px rgba(33, 52, 99, 0.08);
  --shadow-hover: 0 22px 50px rgba(33, 52, 99, 0.14);
 
  --container: 1120px;
  --gutter: 42px;
 
  --font-heading: 'Alexandria', sans-serif;
  --font-body: 'Manrope', sans-serif;
}
 
/* =========================
   RESET / BASE
   ========================= */
 
*,
*::before,
*::after {
  box-sizing: border-box;
}
 
html {
  scroll-behavior: smooth;
}
 
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
}
 
a {
  color: inherit;
  text-decoration: none;
}
 
img {
  max-width: 100%;
  display: block;
}
 
button,
input,
select,
textarea {
  font: inherit;
}
 
main {
  overflow-x: clip;
}
 
.centered {
  text-align: center;
}
 
.container {
  width: 100%;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
  box-sizing: border-box;
}

.site-header .container {
  width: min(100% - 28px, var(--container));
}

/* =========================
   TYPOGRAPHIE
   ========================= */
 
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text);
}
 
h1 {
  margin-bottom: 0;
  font-size: 58px;
  line-height: 0.98;
}
 
h2 {
  margin-bottom: 0;
  font-size: 34px;
  line-height: 1.08;
}
 
h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.22;
}
 
p {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
}
 
.highlight {
  color: #ffe2ed;
}
 
.eyebrow {
  display: inline-flex;
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: -0.02em;
}
 
/* =========================
   SECTIONS
   ========================= */
 
.section {
  padding-top: 72px;
  padding-bottom: 72px;
}
 
.section-soft {
  background: var(--bg);
}
 
.section-intro {
  margin-bottom: 34px;
}
 
.section-intro h2,
.contact-panel h2,
.why-highlight h2 {
  margin: 0;
  line-height: 1.06;
}
 
.section-overlap {
  position: relative;
  z-index: 3;
  margin-top: -20px;
  padding-top: 42px;
  border-top-left-radius: 34px;
  border-top-right-radius: 34px;
  background: var(--bg);
}
 
/* =========================
   HEADER
   ========================= */
 
.site-header {
  position: absolute;
  top: 16px;
  left: 0;
  width: 100%;
  z-index: 20;
}
 
.header-bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 0;
}
 
.brand {
  grid-column: 1;
  grid-row: 1;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
  margin-bottom: 12px;
}
 
.brand img {
  display: block;
  height: 34px;
  width: auto;
}
 
.header-actions {
  grid-column: 3;
  grid-row: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin-bottom: 12px;
}
 
.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  white-space: nowrap;
  color: var(--text);
}
 
.site-nav {
  grid-column: 1 / -1;
  grid-row: 2;
  width: 100%;
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  padding: 0 28px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 16px;
}
 
.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 46px;
  white-space: nowrap;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  transition: color 0.22s ease;
}
 
.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
 
.site-nav a:hover,
.site-nav a.is-active {
  color: var(--primary);
}
 
.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}
 
/* =========================
   BOUTONS
   ========================= */
 
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 20px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-family: var(--font-heading);
  font-weight: 500;
  white-space: nowrap;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease;
}
 
.btn:hover {
  transform: translateY(-2px);
}
 
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 24px rgba(69, 96, 203, 0.28);
}
 
.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 14px 30px rgba(69, 96, 203, 0.36);
}
 
.btn-small {
  min-height: 38px;
  padding: 9px 15px;
  border-radius: 12px;
  font-size: 13px;
}
 
.btn-light {
  background: #fff;
  color: #111827;
  box-shadow: 0 14px 30px rgba(10, 19, 40, 0.12);
}
 
.btn-light:hover {
  box-shadow: 0 18px 36px rgba(10, 19, 40, 0.18);
}
 
.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
}
 
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.65);
}
 
/* =========================
   HERO
   ========================= */
 
.hero {
  padding-top: 122px;
  padding-bottom: 48px;
  background-size: cover;
  background-position: center;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
}
 
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  column-gap: 72px;
  align-items: end;
  width: 100%;
}
 
.hero-copy-left {
  align-self: end;
}
 
.hero-copy-left h1 {
  color: #ffffff;
  max-width: 560px;
}
 
.hero-copy-right {
  align-self: end;
  max-width: 430px;
}
 
.hero-copy-right p {
  color: #ffffff;
  max-width: 430px;
}
 
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}
 
/* =========================
   CARTES
   ========================= */
 
.cards-grid {
  display: grid;
}
 
.cards-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: var(--gutter);
  row-gap: 24px;
  align-items: stretch;
  margin-bottom: 88px;
}
 
.info-card,
.benefit-card,
.contact-panel,
.contact-chip {
  background: var(--card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}
 
.info-card {
  padding: 20px 22px;
  min-height: 176px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
 
.benefit-card {
  padding: 22px 24px;
  min-height: 96px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
 
.info-card:hover,
.benefit-card:hover,
.contact-chip:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
 
.icon-badge {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(69, 96, 203, 0.12);
  margin-bottom: 16px;
  overflow: hidden;
}
 
.icon-badge img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
}
 
.info-card h3,
.benefit-card h3,
.site-footer h3 {
  margin: 0 0 10px;
  font-size: 16px;
}
 
.info-card p,
.benefit-card p {
  font-size: 14px;
  line-height: 1.7;
}
 
/* =========================
   SECTION POURQUOI MOST
   ========================= */
 
.why-section {
  padding-top: 0;
  padding-bottom: 64px;
}
 
.why-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  column-gap: var(--gutter);
  align-items: stretch;
}
 
.why-highlight {
  background: var(--primary);
  color: #fff;
  border-radius: 24px;
  min-height: 336px;
  height: 100%;
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 22px 52px rgba(69, 96, 203, 0.25);
}
 
.why-highlight h2 {
  font-size: clamp(2.05rem, 3vw, 3.25rem);
  line-height: 1.02;
  max-width: 320px;
  color: #ffe2ed;
}
 
.why-list {
  display: grid;
  row-gap: 24px;
}
 
/* =========================
   CONTACT
   ========================= */
 
.contact-panel {
  max-width: 100%;
  margin: 0 auto;
  padding: 32px 30px;
}
 
.contact-panel p {
  max-width: 650px;
  margin: 8px auto 24px;
}
 
.contact-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: var(--gutter);
  row-gap: 12px;
}
 
.contact-chip {
  min-height: 58px;
  padding: 16px 18px;
  display: inline-flex;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 500;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
 
.contact-chip--wide {
  grid-column: 1 / -1;
}
 
.contact-chip--button {
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: left;
  background: var(--card);
}
 
/* =========================
   FORMULAIRE
   ========================= */
 
.quote-form-wrapper {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition:
    max-height 0.45s ease,
    opacity 0.3s ease,
    transform 0.3s ease;
  margin-top: 0;
}
 
.quote-form-wrapper.is-open {
  max-height: 1200px;
  opacity: 1;
  transform: translateY(0);
  margin-top: 22px;
}
 
.most-contact-form {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  padding: 26px;
}
 
.most-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: var(--gutter);
  row-gap: 18px;
}
 
.most-form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
 
.most-form-field--full {
  grid-column: 1 / -1;
}
 
.most-form-field label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}
 
.most-contact-form input,
.most-contact-form select,
.most-contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  color: var(--text);
  background: #fff;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}
 
.most-contact-form input:focus,
.most-contact-form select:focus,
.most-contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(69, 96, 203, 0.12);
}
 
.most-contact-form textarea {
  resize: vertical;
  min-height: 140px;
}
 
.most-form-submit {
  margin-top: 6px;
}
 
.most-form-submit .btn {
  border: none;
  cursor: pointer;
}
 
.most-form-messages {
  max-width: 920px;
  margin: 0 auto 18px;
}
 
.most-form-alert {
  border-radius: 14px;
  padding: 14px 16px;
  font-weight: 600;
  box-shadow: var(--shadow-soft);
}
 
.most-form-alert--success {
  background: #ecfdf3;
  color: #166534;
  border: 1px solid #bbf7d0;
}
 
.most-form-alert--error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}
 
/* =========================
   FOOTER
   ========================= */
 
.site-footer {
  margin-top: 44px;
  padding-top: 52px;
  background: #fff;
  border-top-left-radius: 34px;
  border-top-right-radius: 34px;
}
 
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  column-gap: 34px;
  row-gap: 24px;
  align-items: start;
}
 
.footer-brand img {
  width: 118px;
  height: auto;
}
 
.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
 
.site-footer li {
  color: var(--muted);
  line-height: 1.65;
}
 
.site-footer a {
  transition: color 0.2s ease;
}
 
.site-footer a:hover {
  color: var(--primary);
}
 
.footer-bar {
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 14px 0;
  font-size: 0.95rem;
}
 
/* =========================
   PAGES INTERNES
   ========================= */
 
.site-fallback,
.page-content {
  padding: 80px 0;
}
 
.page-title {
  margin-top: 0;
}
 
/* =========================
   RESPONSIVE — TABLETTE
   ========================= */
 

 
  .hero-grid,
  .cards-grid--three,
  .why-grid,
  .contact-actions,
  .most-form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
 
  .hero {
    padding-top: 150px;
    padding-bottom: 54px;
  }
 
  .hero-copy-right {
    max-width: 520px;
  }
 
  .cards-grid--three {
    margin-bottom: 56px;
  }
 
  .contact-chip--wide,
  .most-form-field--full {
    grid-column: auto;
  }
 
  .why-highlight {
    min-height: 280px;
  }
 
  .international-focus-card,
  .international-why-row {
    grid-template-columns: 1fr;
  }
 
  .hero--international .hero-copy-right {
    max-width: 520px;
  }
 
  .particuliers-hero,
  .particuliers-why-grid,
  .particuliers-why-row {
    grid-template-columns: 1fr;
  }
 
  .particuliers-hero-left h1 {
    max-width: 420px;
  }
 
  .particuliers-copy p {
    max-width: 100%;
  }
}
 
@media (max-width: 767px) {
  .most-contact-form {
    padding: 20px;
  }
}
 
/* =========================
   RESPONSIVE — MOBILE
   ========================= */
 
@media (max-width: 720px) {
 
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }

 
  /* Header */
  .site-header {
    top: 10px;
  }
 
  .site-header .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .header-bar {
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    grid-template-rows: auto auto !important;
    gap: 8px !important;
    width: 100% !important;
  }
 
  .brand {
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 0;
  }
 
  .header-actions {
    grid-column: 2;
    grid-row: 1;
    margin-bottom: 0;
  }
 
  .language-switcher {
    display: none;
  }
 
  .header-actions .btn-small {
    font-size: 12px;
    padding: 7px 12px;
    min-height: 34px;
    border-radius: 10px;
  }
 
  .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    justify-content: space-around;
    gap: 0;
    padding: 0 8px;
    min-height: 42px;
    border-radius: 14px;
  }
 
  .site-nav a {
    font-size: 11px;
    height: 42px;
    padding: 0 4px;
  }
 
  /* Hero */
  .hero {
    padding-top: 160px;
    padding-bottom: 32px;
    min-height: auto;
  }
 
  .hero-grid {
    grid-template-columns: 1fr;
    row-gap: 22px;
  }
 
  .hero-copy-left h1 {
    font-size: 42px;
  }
 
  .hero-copy-right {
    max-width: none;
  }
 
  /* Sections */
  .section-overlap {
    margin-top: -12px;
    padding-top: 30px;
  }
 
  .contact-panel {
    padding: 24px 18px;
  }
 
  .why-highlight {
    padding: 24px;
  }
 
  .site-footer {
    padding-top: 42px;
  }
 
  /* Pages internes */
  .international-focus-card {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto !important;
  }

  .international-focus-left {
    align-items: start !important;
  }

  .international-focus-left h2 {
    font-size: 1.6rem !important;
  }
 
  .hero--particuliers {
    padding-top: 150px;
    padding-bottom: 56px;
  }
 
  .particuliers-hero-left h1 {
    font-size: 42px;
    margin-bottom: 28px;
  }
 
  .particuliers-tags {
    max-width: 100%;
  }
}
 
/* =========================
   PAGE INTERNATIONAL
   ========================= */
 
.hero--international {
  padding-top: 122px;
  padding-bottom: 48px;
}
 
.hero--international .hero-grid {
  min-height: 360px;
}
 
.hero--international .hero-copy-left h1 {
  max-width: 420px;
  color: #ffffff;
}
 
.hero--international .hero-copy-right {
  max-width: 420px;
}
 
.hero--international .hero-copy-right p {
  color: #ffffff;
  max-width: 360px;
}
 
.international-tabs {
  display: grid;
  row-gap: 20px;
}
 
.international-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin-top: 8px;
  margin-bottom: 26px;
}
 
.intl-tag {
  appearance: none;
  border: 1px solid var(--primary);
  background: transparent;
  color: var(--primary);
  border-radius: 999px;
  min-height: 36px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition:
    background-color 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease,
    transform 0.22s ease;
}
 
.intl-tag:hover,
.intl-tag--active {
  background: var(--primary);
  color: #ffffff;
}
 
.intl-tag:hover {
  transform: translateY(-1px);
}
 
.international-panels {
  position: relative;
}
 
.international-focus-card {
  display: none;
  grid-template-columns: 1fr 1fr;
  column-gap: 34px;
  align-items: stretch;
  background: var(--primary);
  color: #ffffff;
  border-radius: 24px;
  padding: 28px 30px;
  box-shadow: 0 22px 52px rgba(69, 96, 203, 0.25);
}
 
.international-focus-card.is-active {
  display: grid;
}
 
.international-focus-left {
  display: flex;
  align-items: end;
}
 
.international-focus-left h2 {
  margin: 0;
  color: #ffe2ed;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.02;
  max-width: 320px;
}
 
.international-focus-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}
 
.international-focus-right p {
  color: #ffffff;
  max-width: 360px;
}
 
.international-checks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
 
.international-checks li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  line-height: 1.5;
  font-size: 14px;
}
 
.international-checks li img {
  width: 14px;
  height: 14px;
  object-fit: contain;
  flex-shrink: 0;
}
 
.international-why {
  padding-top: 56px;
}
 
.international-why-list {
  display: grid;
  row-gap: 18px;
}
 
.international-why-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 16px;
}
 
.international-why-problem,
.international-why-solution {
  min-height: 78px;
  padding: 18px 20px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  line-height: 1.55;
  font-size: 14px;
}
 
.international-why-problem {
  color: #ff4d6d;
}
 
.international-why-solution {
  color: var(--text);
}
 
/* =========================
   PAGE PARTICULIERS
   ========================= */
 
.hero--particuliers {
  background: var(--primary);
  color: #ffffff;
  padding-top: 120px;
  padding-bottom: 84px;
}
 
.particuliers-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 54px;
  align-items: end;
  min-height: 360px;
}
 
.particuliers-hero-left h1 {
  color: #ffe2ed;
  font-size: clamp(2.8rem, 4vw, 4.4rem);
  line-height: 1.02;
  max-width: 360px;
  margin-bottom: 38px;
}
 
.particuliers-hero-right {
  align-self: end;
  padding-bottom: 8px;
}
 
.particuliers-copy {
  display: none;
}
 
.particuliers-copy.is-active {
  display: block;
}
 
.particuliers-copy p {
  color: #ffffff;
  max-width: 430px;
  font-size: 18px;
  line-height: 1.55;
}
 
.particuliers-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  max-width: 440px;
}
 
.part-tag {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.92);
  background: transparent;
  color: #ffffff;
  border-radius: 999px;
  min-height: 38px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition:
    background-color 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease,
    transform 0.22s ease;
}
 
.part-tag:hover,
.part-tag--active {
  background: #ffffff;
  color: var(--primary);
}
 
.part-tag:hover {
  transform: translateY(-1px);
}
 
.particuliers-why {
  padding-top: 56px;
}
 
.particuliers-why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  column-gap: 42px;
  align-items: start;
}
 
.particuliers-why-title h2 {
  max-width: 240px;
}
 
.particuliers-why-list {
  display: grid;
  row-gap: 18px;
}
 
.particuliers-why-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
 
.particuliers-problem,
.particuliers-solution {
  min-height: 92px;
  padding: 18px 20px;
  font-size: 14px;
  line-height: 1.55;
}
 
.particuliers-problem {
  background: #ffe2ed;
  color: #ff4d6d;
}
 
.particuliers-solution {
  background: #ffffff;
  color: var(--text);
}

@media (max-width: 720px) {
  div.container.header-bar {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 14px !important;
    box-sizing: border-box !important;
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    grid-template-rows: auto auto !important;
    gap: 8px !important;
  }

  div.container.header-bar .brand {
    grid-column: 1 !important;
    grid-row: 1 !important;
    margin-bottom: 0 !important;
  }

  div.container.header-bar .header-actions {
    grid-column: 2 !important;
    grid-row: 1 !important;
    margin-bottom: 0 !important;
  }

  div.container.header-bar .language-switcher {
    display: none !important;
  }

  div.container.header-bar .header-actions .btn-small {
    font-size: 12px !important;
    padding: 7px 12px !important;
    min-height: 34px !important;
    border-radius: 10px !important;
  }

  div.container.header-bar .site-nav {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    width: 100% !important;
    justify-content: space-around !important;
    gap: 0 !important;
    padding: 0 8px !important;
    min-height: 42px !important;
    border-radius: 14px !important;
  }

  div.container.header-bar .site-nav a {
    font-size: 11px !important;
    height: 42px !important;
    padding: 0 4px !important;
  }
}
.particuliers-tags {
  margin-bottom: 60px;
}

.particuliers-hero-right {
  margin-bottom: 60px;
}