@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,300&display=swap');

/* ═══════════════════════════════════════════════
   VARIABLES — CHARTE ASSUROMIEUX
═══════════════════════════════════════════════ */
:root {
  --navy:         #0D2B4E;
  --navy-mid:     #1A4A7A;
  --navy-light:   #1E5799;
  --orange:       #F47920;
  --orange-dark:  #D4651A;
  --orange-pale:  #FEF3EB;
  --orange-light: #FDEBD8;
  --blue-light:   #EBF3FB;
  --blue-mid:     #C8DFF4;
  --green:        #2E7D32;
  --green-light:  #E8F5E9;
  --red:          #C62828;
  --red-light:    #FFEBEE;
  --grey:         #4A4A4A;
  --grey-light:   #F5F7FA;
  --grey-border:  #E0E6EE;
  --white:        #FFFFFF;
  --text:         #2C2C2C;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --radius:       6px;
  --radius-lg:    12px;
  --shadow:       0 2px 12px rgba(13,43,78,.08);
  --shadow-md:    0 4px 24px rgba(13,43,78,.12);
  --shadow-lg:    0 8px 48px rgba(13,43,78,.16);
  --transition:   .2s ease;
  --max-width:    1100px;
}

/* ═══════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
/* img { max-width: 100%; display: block; } */
a { color: var(--orange); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange-dark); }
ul { list-style: none; }

/* ═══════════════════════════════════════════════
   TYPOGRAPHIE
═══════════════════════════════════════════════ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.25;
}
h1 { font-size: clamp(1.75rem, 4vw, 2.8rem); margin-bottom: .5rem; }
h2 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); margin-bottom: .4rem; }
h3 { font-size: 1.15rem; margin-bottom: .3rem; }
h4 { font-size: 1rem; font-family: var(--font-body); font-weight: 600; }
p { margin-bottom: .9rem; }
strong { font-weight: 600; color: var(--navy); }

/* ═══════════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════════ */
.container-rs {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container--narrow {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}
@media (max-width: 960px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════ */


/* ═══════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════ */
.hero-assos {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 55%, #1a5a9a 100%);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero-assos::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(244,121,32,.08) 0%, transparent 70%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(244,121,32,.18);
  border: 1px solid rgba(244,121,32,.35);
  color: var(--orange);
  font-size: .8rem;
  font-weight: 600;
  padding: .3rem .85rem;
  border-radius: 20px;
  margin-bottom: 1.2rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.hero__title {
  color: var(--white);
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  margin-bottom: 1.1rem;
  line-height: 1.2;
}
.hero__title em { color: var(--orange); font-style: normal; }
.hero__intro {
  color: rgba(255,255,255,.8);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.hero__questions {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 2rem;
}
.hero__questions li {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.85);
  font-size: .95rem;
}
.hero__questions li::before {
  content: '→';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
}
.hero__cta-group { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero formulaire */
.hero__form-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-top: 3px solid var(--orange);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  backdrop-filter: blur(12px);
}
.hero__form-title {
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: .3rem;
}
.hero__form-sub {
  color: var(--orange);
  font-size: .82rem;
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-bottom: .75rem; }
.form-row--full { grid-template-columns: 1fr; }
.form-group { display: flex; flex-direction: column; gap: .3rem; }
.form-group label {
  color: rgba(255,255,255,.65);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(15,52,96,.7);
  border: 1px solid rgba(200,223,244,.25);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: .9rem;
  padding: .6rem .85rem;
  outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.3); }
.form-group input:focus,
.form-group textarea:focus { border-color: var(--orange); }
.form-group textarea { resize: vertical; min-height: 70px; }
.form-rgpd {
  font-size: .72rem;
  color: rgba(255,255,255,.35);
  text-align: center;
  margin-top: .75rem;
  line-height: 1.4;
}
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__form-card { max-width: 500px; }
}

/* ═══════════════════════════════════════════════
   HERO SATELLITE (plus compact)
═══════════════════════════════════════════════ */
.hero--satellite {
  padding: 3.5rem 0 3rem;
}
.hero--satellite .hero__inner {
  grid-template-columns: 1fr;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.hero--satellite .hero__title { font-size: clamp(1.6rem, 3vw, 2.3rem); }
.hero--satellite .hero__intro { font-size: 1rem; margin-bottom: 1.5rem; }
.hero--satellite .hero__cta-group { justify-content: center; }

/* ═══════════════════════════════════════════════
   BOUTONS
═══════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
}
.btn--primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(244,121,32,.35);
}
.btn--primary:hover {
  background: var(--orange-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(244,121,32,.45);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.4);
}
.btn--outline:hover {
  border-color: var(--white);
  color: var(--white);
  background: rgba(255,255,255,.08);
}
.btn--navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(13,43,78,.25);
}
.btn--navy:hover { background: var(--navy-mid); color: var(--white); }
.btn--lg { padding: .9rem 2.2rem; font-size: 1.05rem; }
.btn--full { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════════════
   SOMMAIRE
═══════════════════════════════════════════════ */
.sommaire {
  background: var(--grey-light);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
}
.sommaire__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--navy);
  margin-bottom: 1rem;
}
.sommaire__list { display: flex; flex-direction: column; gap: .4rem; }
.sommaire__list li {
  display: flex;
  align-items: baseline;
  gap: .6rem;
}
.sommaire__list li .num {
  color: var(--orange);
  font-weight: 700;
  font-size: .85rem;
  min-width: 1.4rem;
  font-family: var(--font-body);
}
.sommaire__list li a {
  color: var(--navy-mid);
  font-size: .9rem;
  font-weight: 400;
  line-height: 1.4;
}
.sommaire__list li a:hover { color: var(--orange); }

/* ═══════════════════════════════════════════════
   SECTIONS PRINCIPALES
═══════════════════════════════════════════════ */
.section { padding: 4rem 0; }
.section--alt { background: var(--blue-light); }
.section--dark { background: var(--navy); color: var(--white); }
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--narrow { padding: 3rem 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--orange-pale);
  color: var(--orange);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: 20px;
  margin-bottom: .75rem;
}

.section__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .85rem 1.25rem;
  background: var(--blue-light);
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 1.75rem;
}
.section__header h2 { margin: 0; font-size: 1.35rem; }
.section__num {
  width: 2rem;
  height: 2rem;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
  font-family: var(--font-body);
}

/* ═══════════════════════════════════════════════
   CARDS
═══════════════════════════════════════════════ */
.card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card__icon {
  font-size: 2rem;
  margin-bottom: .75rem;
  display: block;
}
.card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .4rem;
  font-family: var(--font-body);
}
.card__body { font-size: .9rem; color: var(--grey); line-height: 1.55; }

.card--highlight {
  border-top: 3px solid var(--orange);
}
.card--navy {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.card--navy .card__title { color: var(--white); }
.card--navy .card__body { color: rgba(255,255,255,.75); }

/* ═══════════════════════════════════════════════
   PILLIERS 3 COLONNES
═══════════════════════════════════════════════ */
.pilliers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.pillier {
  padding: 2rem 1.5rem;
  text-align: center;
}
.pillier--1, .pillier--3 { background: var(--navy); }
.pillier--2 { background: var(--orange); }
.pillier__icon { font-size: 2rem; margin-bottom: .75rem; display: block; }
.pillier__title { color: var(--white); font-size: 1.1rem; margin-bottom: .6rem; }
.pillier__body { color: rgba(255,255,255,.78); font-size: .9rem; line-height: 1.55; }
@media (max-width: 600px) {
  .pilliers { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════
   TABLEAUX
═══════════════════════════════════════════════ */
.tbl-wrap { overflow-x: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow); margin: 1.25rem 0; }
table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}
thead tr { background: var(--navy); }
thead th {
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  padding: .85rem 1rem;
  text-align: left;
  font-size: .85rem;
  letter-spacing: .02em;
}
tbody tr:nth-child(even) { background: var(--blue-light); }
tbody tr:hover { background: #daeaf7; }
tbody td {
  padding: .8rem 1rem;
  border-bottom: 1px solid var(--grey-border);
  font-size: .875rem;
  vertical-align: top;
}
tbody td:first-child { font-weight: 600; color: var(--navy); }
.tbl-good { color: var(--green); font-weight: 600; }
.tbl-bad  { color: var(--red); }
.tbl-orange { color: var(--orange); font-weight: 700; }

/* Tableau comparatif 2 colonnes */
.compare-table thead th:first-child { background: var(--navy); }
.compare-table thead th:nth-child(2) { background: #6B7280; }
.compare-table thead th:nth-child(3) { background: var(--navy-mid); }
.compare-table tbody td:nth-child(2) { color: var(--red); }
.compare-table tbody td:nth-child(3) { color: var(--green); font-weight: 600; background: var(--green-light); }

/* ═══════════════════════════════════════════════
   ÉTAPES (steps)
═══════════════════════════════════════════════ */
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.25rem;
  padding: 1rem 1.25rem;
  transition: background var(--transition);
  border-bottom: 1px solid var(--grey-border);
}
.step:last-child { border-bottom: none; }
.step:nth-child(odd) { background: var(--white); }
.step:nth-child(even) { background: var(--grey-light); }
.step:hover { background: var(--blue-light); }
.step__num {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  flex-shrink: 0;
  font-family: var(--font-body);
}
.step:nth-child(odd) .step__num { background: var(--orange); }
.step:nth-child(even) .step__num { background: var(--navy-mid); }
.step__title { font-weight: 700; color: var(--navy); font-size: .95rem; margin-bottom: .2rem; }
.step__desc { font-size: .875rem; color: var(--grey); line-height: 1.5; }

/* Steps horizontaux */
.steps-h { display: grid; gap: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.step-h { padding: 1.25rem 1rem; text-align: center; background: var(--white); border-right: 1px solid var(--grey-border); }
.step-h:last-child { border-right: none; }
.step-h:nth-child(odd) .step-h__num { background: var(--orange); }
.step-h:nth-child(even) .step-h__num { background: var(--navy-mid); }
.step-h__num {
  width: 2.2rem; height: 2.2rem;
  border-radius: 50%;
  color: var(--white); font-weight: 700; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto .6rem;
  font-family: var(--font-body);
}
.step-h__title { font-weight: 700; color: var(--navy); font-size: .875rem; margin-bottom: .3rem; }
.step-h__desc { font-size: .8rem; color: var(--grey); line-height: 1.4; }

/* ═══════════════════════════════════════════════
   BULLETS & LISTES STYLISÉES
═══════════════════════════════════════════════ */
.list-check, .list-arrow, .list-cross { display: flex; flex-direction: column; gap: .5rem; }
.list-check li, .list-arrow li, .list-cross li {
  display: flex; align-items: flex-start; gap: .6rem;
  font-size: .9rem; line-height: 1.5;
}
.list-check li::before { content: '✔'; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: .1rem; }
.list-arrow li::before { content: '→'; color: var(--orange); font-weight: 700; flex-shrink: 0; margin-top: .1rem; }
.list-cross li::before { content: '✗'; color: var(--red); font-weight: 700; flex-shrink: 0; margin-top: .1rem; }
.list-orange { display: flex; flex-direction: column; gap: .45rem; }
.list-orange li { display: flex; align-items: flex-start; gap: .6rem; font-size: .9rem; }
.list-orange li::before { content: '▸'; color: var(--orange); font-weight: 700; flex-shrink: 0; }

/* ═══════════════════════════════════════════════
   ENCADRÉS / BOXES
═══════════════════════════════════════════════ */
.info-box {
  border-left: 4px solid var(--orange);
  background: var(--orange-pale);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.25rem 0;
}
.info-box--navy {
  border-color: var(--navy);
  background: var(--blue-light);
}
.info-box--green {
  border-color: var(--green);
  background: var(--green-light);
}
.info-box--red {
  border-color: var(--red);
  background: var(--red-light);
}
.info-box__title {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: .75rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}

/* ═══════════════════════════════════════════════
   STAT STRIP
═══════════════════════════════════════════════ */
.stat-strip {
  display: grid;
  background: var(--navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin: 1.5rem 0;
}
.stat-item {
  padding: 1.75rem 1.25rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
}
.stat-item:last-child { border-right: none; }
.stat-item__val {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--orange);
  display: block;
  line-height: 1.1;
  margin-bottom: .35rem;
}
.stat-item__label {
  font-size: .82rem;
  color: rgba(255,255,255,.65);
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════
   GRILLE AVANTAGES / INCONVÉNIENTS
═══════════════════════════════════════════════ */
.vs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin: 1.25rem 0; }
.vs-col { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.vs-col__header {
  padding: .9rem 1.25rem;
  font-weight: 700;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--white);
}
.vs-col--good .vs-col__header { background: var(--green); }
.vs-col--bad  .vs-col__header { background: var(--red); }
.vs-col--navy .vs-col__header { background: var(--navy); }
.vs-col--orange .vs-col__header { background: var(--orange); }
.vs-col__body { padding: 1rem 1.25rem; }
.vs-col--good .vs-col__body { background: var(--green-light); }
.vs-col--bad  .vs-col__body { background: var(--red-light); }
.vs-col--navy .vs-col__body { background: var(--blue-light); }
.vs-col--orange .vs-col__body { background: var(--orange-pale); }
@media (max-width: 600px) { .vs-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════ */
.faq { display: flex; flex-direction: column; gap: .75rem; }
.faq__item {
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq__question {
  padding: 1rem 1.25rem;
  font-weight: 600;
  color: var(--navy);
  font-size: .95rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: var(--white);
  transition: background var(--transition);
  user-select: none;
  gap: 1rem;
}
.faq__question:hover { background: var(--blue-light); }
.faq__question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq__item.open .faq__question::after { transform: rotate(45deg); }
.faq__answer {
  display: none;
  padding: 1rem 1.25rem;
  background: var(--grey-light);
  font-size: .9rem;
  color: var(--grey);
  line-height: 1.65;
  border-top: 1px solid var(--grey-border);
}
.faq__item.open .faq__answer { display: block; }

/* ═══════════════════════════════════════════════
   CTA BLOCK
═══════════════════════════════════════════════ */
.cta-block {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  margin: 2.5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 120%, rgba(244,121,32,.2), transparent);
  pointer-events: none;
}
.cta-block__title {
  color: var(--white);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  margin-bottom: .6rem;
  position: relative;
}
.cta-block__sub {
  color: rgba(255,255,255,.7);
  font-size: 1rem;
  margin-bottom: 1.75rem;
  position: relative;
}
.cta-block__buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* ═══════════════════════════════════════════════
   MAILLAGE INTERNE
═══════════════════════════════════════════════ */
.maillage {
  background: var(--blue-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin: 2rem 0;
}
.maillage__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--navy);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.maillage__title::before { content: '🔗'; }
.maillage__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: .5rem; }
.maillage__link {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem .9rem;
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  font-size: .875rem;
  font-weight: 500;
  color: var(--navy);
  transition: all var(--transition);
}
.maillage__link:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.maillage__link::before { content: '→'; color: var(--orange); font-weight: 700; }

/* ═══════════════════════════════════════════════
   PROFILS GRID
═══════════════════════════════════════════════ */
.profils { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.profil {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  padding: 1.1rem 1.25rem;
  background: var(--blue-light);
  border-radius: var(--radius);
  border-left: 3px solid var(--orange);
}
.profil__icon { font-size: 1.5rem; flex-shrink: 0; }
.profil__title { font-weight: 700; color: var(--navy); font-size: .9rem; margin-bottom: .2rem; }
.profil__desc { font-size: .84rem; color: var(--grey); line-height: 1.45; }
@media (max-width: 600px) { .profils { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════
   BREADCRUMB
═══════════════════════════════════════════════ */
.breadcrumb {
  padding: .75rem 0;
  font-size: .82rem;
  color: var(--grey);
}
.breadcrumb a { color: var(--navy-mid); }
.breadcrumb span { color: var(--grey); }
.breadcrumb__sep { margin: 0 .4rem; color: var(--grey-border); }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .5s ease both; }
.fade-up--1 { animation-delay: .1s; }
.fade-up--2 { animation-delay: .2s; }
.fade-up--3 { animation-delay: .3s; }
.fade-up--4 { animation-delay: .4s; }

/* ═══════════════════════════════════════════════
   UTILITAIRES
═══════════════════════════════════════════════ */
.text-center  { text-align: center; }
.text-orange  { color: var(--orange); }
.text-navy    { color: var(--navy); }
.text-grey    { color: var(--grey); }
.text-small   { font-size: .85rem; }
.text-note    { font-style: italic; font-size: .85rem; color: var(--grey); }
.fw-bold      { font-weight: 700; }
.mt-xs { margin-top: .5rem; }
.mt-sm { margin-top: 1rem; }
.mt-md { margin-top: 1.75rem; }
.mt-lg { margin-top: 2.5rem; }
.mb-xs { margin-bottom: .5rem; }
.mb-sm { margin-bottom: 1rem; }
.mb-md { margin-bottom: 1.75rem; }
.mb-lg { margin-bottom: 2.5rem; }
.hidden { display: none; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ═══════════════════════════════════════════════
   RESPONSIVE GLOBAL
═══════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════
   CORRECTIONS RESPONSIVE HERO & FORMULAIRE
   ═══════════════════════════════════════════════ */

/* 1. Correction overflow des inputs */
.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%; /* Force l'input à rester dans son parent */
    max-width: 100%;
    box-sizing: border-box; /* Assure que le padding n'augmente pas la largeur */
}

/* 2. Responsive spécifique au formulaire sur mobile */
@media (max-width: 480px) {
    .hero__form-card {
        padding: 1.25rem; /* Réduit le padding pour gagner de l'espace */
    }

    .form-row {
        grid-template-columns: 1fr; /* On passe tout en une seule colonne sur très petit mobile */
        gap: 0.75rem;
    }

    .hero__cta-group {
        flex-direction: column; /* Boutons l'un au-dessus de l'autre */
    }

    .btn--lg {
        width: 100%;
        justify-content: center;
    }
}

/* 3. Ajustement de la grille Hero pour éviter les chevauchements */
@media (max-width: 900px) {
    .hero__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero__form-card {
        max-width: 100%; /* Le formulaire prend toute la largeur dispo */
        margin: 0 auto;
    }
    
    .hero-assos {
        padding: 3rem 0; /* Réduit un peu l'espace vertical */
    }
}

/* 4. Correction spécifique pour le titre qui peut couper sur mobile */
@media (max-width: 576px) {
    .hero__title {
        font-size: 1.6rem; /* Un peu plus petit pour éviter de déborder */
        line-height: 1.3;
    }
    
    .hero__tag {
        font-size: 0.7rem;
    }
}