@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/barlow-condensed-600-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/barlow-condensed-600-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/barlow-condensed-700-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/barlow-condensed-700-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/inter-var-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/inter-var-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ============ Tokens ============ */
:root {
  --navy-900: #071634;
  --navy-800: #091C44;
  --navy-700: #0B2355;
  --navy-500: #16336F;
  --navy-300: #3C5591;

  --gold-400: #FFC629;
  --gold-500: #F5B301;
  --gold-600: #D89A00;
  --gold-700: #A07200;
  --gold-800: #8A6100;

  --ink: #131C2E;
  --slate: #5B6780;
  --slate-muted: #626E87;
  --slate-light: #8794AC;
  --line: #E2E7F0;
  --mist: #F4F6FA;
  --white: #FFFFFF;

  --be-black: #1A1A1A;
  --be-yellow: #FDDA24;
  --be-red: #EF3340;

  --font-display: 'Barlow Condensed', 'Arial Narrow', system-ui, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 1px 2px rgba(7, 22, 52, .06), 0 2px 8px rgba(7, 22, 52, .05);
  --shadow: 0 4px 12px rgba(7, 22, 52, .07), 0 12px 32px rgba(7, 22, 52, .08);
  --shadow-lg: 0 10px 24px rgba(7, 22, 52, .10), 0 28px 60px rgba(7, 22, 52, .14);

  --gutter: 1.25rem;
  --container: 75rem;
  --header-h: 4.25rem;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

@media (min-width: 48em) {
  :root { --gutter: 2rem; --header-h: 5.25rem; }
}

/* ============ Base ============ */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
  margin: 0;
  padding-bottom: 3.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-wrap: break-word;
}

img, picture, svg, video { display: block; max-width: 100%; }
img { height: auto; }

a { color: var(--navy-700); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--navy-500); }

button, input, select, textarea { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.005em;
  margin: 0 0 .5em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.35rem, 1.55rem + 3.6vw, 4.15rem); }
h2 { font-size: clamp(1.95rem, 1.35rem + 2.6vw, 3.1rem); }
h3 { font-size: clamp(1.3rem, 1.1rem + .85vw, 1.65rem); }
h4 { font-size: 1.15rem; }

p { margin: 0 0 1.15rem; }
p:last-child { margin-bottom: 0; }

ul, ol { margin: 0 0 1.15rem; padding-left: 1.2rem; }

strong { font-weight: 600; }

:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 3px;
  border-radius: 3px;
}

::selection { background: var(--gold-400); color: var(--navy-900); }

/* ============ Layout ============ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(3.25rem, 2rem + 5vw, 6rem); }
.section--tight { padding-block: clamp(2.5rem, 1.75rem + 3.5vw, 4.25rem); }
.section--mist { background: var(--mist); }
.section--dark { background: var(--navy-900); color: #DCE3EF; }
.section--dark h2, .section--dark h3 { color: var(--white); }

.section-head { max-width: 46rem; margin-bottom: clamp(2rem, 1.4rem + 2vw, 3.25rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--slate); font-size: 1.05rem; }
.section--dark .section-head p { color: #AEBBD2; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-800);
  margin-bottom: .85rem;
}
.eyebrow::before {
  content: "";
  width: 1.75rem;
  height: 3px;
  background: var(--gold-500);
  border-radius: 2px;
}
.section-head--center .eyebrow::after {
  content: "";
  width: 1.75rem;
  height: 3px;
  background: var(--gold-500);
  border-radius: 2px;
}
.section--dark .eyebrow,
.hero .eyebrow,
.callband .eyebrow { color: var(--gold-400); }

.lead { font-size: clamp(1.05rem, 1rem + .3vw, 1.2rem); color: var(--slate); }
.section--dark .lead { color: #BFCADD; }

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

.skip-link {
  position: absolute;
  left: .75rem;
  top: -100%;
  z-index: 200;
  padding: .7rem 1.1rem;
  background: var(--gold-500);
  color: var(--navy-900);
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: top .2s var(--ease);
}
.skip-link:focus { top: .75rem; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .95rem 1.6rem;
  min-height: 3rem;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color .2s var(--ease), color .2s var(--ease),
              border-color .2s var(--ease), transform .2s var(--ease),
              box-shadow .2s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { flex: none; width: 1.15em; height: 1.15em; }

.btn--primary {
  background: var(--gold-500);
  border-color: var(--gold-500);
  color: var(--navy-900);
  box-shadow: 0 4px 14px rgba(245, 179, 1, .32);
}
.btn--primary:hover {
  background: var(--gold-400);
  border-color: var(--gold-400);
  color: var(--navy-900);
  box-shadow: 0 8px 22px rgba(245, 179, 1, .42);
}

.btn--navy { background: var(--navy-700); border-color: var(--navy-700); color: var(--white); }
.btn--navy:hover { background: var(--navy-500); border-color: var(--navy-500); color: var(--white); }

.btn--ghost { background: transparent; border-color: rgba(255, 255, 255, .45); color: var(--white); }
.btn--ghost:hover { background: rgba(255, 255, 255, .12); border-color: var(--white); color: var(--white); }

.btn--outline { background: transparent; border-color: var(--line); color: var(--navy-700); }
.btn--outline:hover { background: var(--navy-700); border-color: var(--navy-700); color: var(--white); }

.btn--lg { padding: 1.1rem 1.9rem; min-height: 3.5rem; font-size: 1.02rem; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; }

.icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

/* ============ Topbar ============ */
.topbar {
  background: var(--navy-900);
  color: #C6D1E4;
  font-size: .85rem;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  min-height: 2.6rem;
  padding-block: .4rem;
}
.topbar__list {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.topbar__item { display: flex; align-items: center; gap: .5rem; margin: 0; }
.topbar__item > span { white-space: nowrap; }
.topbar__long { display: none; }
@media (max-width: 22.5em) {
  .topbar { font-size: .78rem; }
  .topbar__item { gap: .4rem; }
  .flag-be { width: 1.15rem; height: .82rem; }
}
@media (min-width: 30em) {
  .topbar__court { display: none; }
  .topbar__long { display: inline; }
}
.topbar__item svg { width: 1rem; height: 1rem; color: var(--gold-500); flex: none; }
.topbar a { color: inherit; text-decoration: none; }
.topbar a:hover { color: var(--white); text-decoration: underline; }
.topbar__contacts { display: none; }

.flag-be {
  display: inline-grid;
  grid-template-columns: repeat(3, 1fr);
  width: 1.3rem;
  height: .92rem;
  border-radius: 2px;
  overflow: hidden;
  flex: none;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .25);
}
.flag-be i:nth-child(1) { background: var(--be-black); }
.flag-be i:nth-child(2) { background: var(--be-yellow); }
.flag-be i:nth-child(3) { background: var(--be-red); }

@media (min-width: 62em) {
  .topbar__inner { justify-content: space-between; }
  .topbar__contacts { display: flex; }
}

/* ============ Header ============ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s var(--ease);
}
.header.is-stuck { box-shadow: var(--shadow); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  color: var(--navy-700);
  flex: none;
}
.brand img { width: auto; height: 2.5rem; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.32rem;
  letter-spacing: .005em;
  text-transform: uppercase;
  color: var(--navy-700);
}
.brand__tag {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--slate-muted);
  margin-top: .22rem;
}
@media (min-width: 30em) {
  .brand img { height: 2.9rem; }
  .brand__name { font-size: 1.5rem; }
}
@media (min-width: 62em) {
  .brand img { height: 3.1rem; }
  .brand__name { font-size: 1.58rem; }
  .brand__tag { font-size: .64rem; }
}

/* ============ Navigation ============ */
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.9rem;
  height: 2.9rem;
  padding: 0;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--navy-700);
  cursor: pointer;
}
.nav-toggle svg { width: 1.4rem; height: 1.4rem; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

.nav {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(22rem, 86vw);
  z-index: 110;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.25rem var(--gutter) 2rem;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transform: translateX(101%);
  visibility: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  transition: transform .3s var(--ease), visibility .3s var(--ease);
}
.nav.is-open { transform: translateX(0); visibility: visible; }

.nav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.nav__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--slate);
}

.nav__list { display: flex; flex-direction: column; gap: .15rem; margin: 0; padding: 0; list-style: none; }
.nav__list a {
  display: block;
  padding: .78rem .25rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: color .2s var(--ease), padding-left .2s var(--ease);
}
.nav__list a:hover, .nav__list a.is-active { color: var(--navy-700); padding-left: .6rem; }

.nav__cta { display: flex; flex-direction: column; gap: .75rem; }

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 105;
  background: rgba(7, 22, 52, .55);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s var(--ease);
}
.nav-backdrop.is-visible { opacity: 1; visibility: visible; }

@media (min-width: 75em) {
  .nav-toggle, .nav__head, .nav-backdrop { display: none; }
  .nav {
    position: static;
    width: auto;
    flex-direction: row;
    align-items: center;
    gap: 1.15rem;
    padding: 0;
    background: none;
    box-shadow: none;
    transform: none;
    visibility: visible;
    overflow: visible;
  }
  .nav__list { flex-direction: row; align-items: center; gap: .1rem; }
  .nav__list a {
    position: relative;
    padding: .45rem .5rem;
    font-size: .92rem;
    font-weight: 500;
    border-bottom: 0;
    white-space: nowrap;
  }
  .nav__list a::after {
    content: "";
    position: absolute;
    left: .5rem;
    right: .5rem;
    bottom: .1rem;
    height: 2px;
    background: var(--gold-500);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s var(--ease);
  }
  .nav__list a:hover, .nav__list a.is-active { padding-left: .5rem; }
  .nav__list a:hover::after, .nav__list a.is-active::after { transform: scaleX(1); }
  .nav__cta { flex-direction: row; align-items: center; gap: .6rem; }
  .nav__cta .btn--block { width: auto; }
}

/* ============ Sélecteur de langue ============ */
.lang { position: relative; }
.lang__btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .55rem .8rem;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: .88rem;
  font-weight: 600;
  color: var(--navy-700);
  cursor: pointer;
}
.lang__btn svg { width: .7rem; height: .7rem; transition: transform .2s var(--ease); }
.lang__btn[aria-expanded="true"] svg { transform: rotate(180deg); }

.lang__menu {
  display: none;
  margin: .5rem 0 0;
  padding: .3rem;
  list-style: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.lang__menu.is-open { display: block; }
.lang__menu li + li { margin-top: .1rem; }
.lang__menu a, .lang__menu span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .5rem .65rem;
  border-radius: 4px;
  font-size: .9rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--ink);
}
.lang__menu a:hover { background: var(--mist); }
.lang__menu [aria-current="true"] { background: var(--navy-700); color: var(--white); font-weight: 600; }
.lang__menu span[aria-disabled="true"] { color: var(--slate-muted); cursor: not-allowed; }
.lang__soon {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--slate-muted);
}

@media (min-width: 75em) {
  .lang__menu {
    position: absolute;
    top: calc(100% + .45rem);
    right: 0;
    z-index: 10;
    min-width: 11rem;
    margin: 0;
    box-shadow: var(--shadow);
  }
}

/* ============ Hero ============ */
.hero {
  position: relative;
  background: var(--navy-800);
  background-image:
    radial-gradient(90rem 45rem at 78% -10%, rgba(22, 51, 111, .95) 0%, rgba(9, 28, 68, 0) 60%),
    linear-gradient(160deg, var(--navy-800) 0%, var(--navy-900) 100%);
  color: var(--white);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, .035) 0 2px, transparent 2px 9px);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: grid;
  gap: clamp(2.25rem, 1.5rem + 3.5vw, 3.5rem);
  padding-block: clamp(2.75rem, 1.75rem + 4.5vw, 5.25rem);
}
.hero__content { max-width: 36rem; }
.hero h1 { color: var(--white); margin-bottom: .55rem; }
.hero h1 em { font-style: normal; color: var(--gold-400); }
.hero__lead {
  font-size: clamp(1.05rem, 1rem + .35vw, 1.22rem);
  color: #C3CFE4;
  margin-bottom: 1.75rem;
  max-width: 34rem;
}
.hero .btn-row { margin-bottom: 2rem; }

.hero__phone { display: inline-flex; flex-direction: column; align-items: flex-start; }
.hero__phone small {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .85;
}
.hero__phone strong { font-family: var(--font-display); font-size: 1.45rem; letter-spacing: .01em; }

.hero__points {
  display: grid;
  gap: .7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.hero__points li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .96rem;
  color: #D5DEEC;
}
.hero__points svg { flex: none; width: 1.3rem; height: 1.3rem; margin-top: .1rem; color: var(--gold-400); }

.hero__media { position: relative; }
.hero__media picture {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
}
.hero__media img { width: 100%; border-radius: var(--radius-lg); }
.hero__media img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: auto -.9rem -.9rem auto;
  width: 45%;
  height: 45%;
  border: 3px solid var(--gold-500);
  border-radius: var(--radius-lg);
}

.hero__badge {
  position: absolute;
  left: 0;
  bottom: 1.1rem;
  transform: translateX(-4%);
  display: flex;
  align-items: center;
  gap: .8rem;
  z-index: 2;
  max-width: 18.5rem;
  padding: .85rem 1.05rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  color: var(--ink);
}
.hero__badge-icon {
  display: grid;
  place-items: center;
  flex: none;
  width: 2.75rem;
  height: 2.75rem;
  background: var(--gold-500);
  border-radius: 50%;
  color: var(--navy-900);
}
.hero__badge-icon svg { width: 1.45rem; height: 1.45rem; }
.hero__badge > span > strong { display: block; font-size: .95rem; line-height: 1.25; }
.hero__badge > span > span { display: block; font-size: .82rem; color: var(--slate); line-height: 1.35; }

@media (min-width: 62em) {
  .hero__inner {
    grid-template-columns: 1.02fr .98fr;
    align-items: center;
    gap: clamp(2.5rem, 1rem + 5vw, 4.5rem);
  }
  .hero__media { max-width: 30rem; margin-left: auto; }
}

/* ============ Bandeau de réassurance ============ */
.trust { background: var(--white); border-bottom: 1px solid var(--line); }
.trust__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
}
.trust__item {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: 1.1rem .95rem;
  background: var(--white);
}
.trust__item > span { min-width: 0; }

/* Sur mobile le bandeau va d'un bord à l'autre de l'écran : pas de bordures
   latérales, pas de marge de conteneur. Les cases gagnent la place ainsi
   libérée, ce qui évite aux libellés de se couper en trois lignes. */
@media (max-width: 47.99em) {
  .trust > .container { padding-inline: 0; }
  .trust__item svg { width: 1.5rem; height: 1.5rem; }
  .trust__item > span > strong { font-size: .92rem; }
  .trust__item > span > span { font-size: .8rem; }
}
@media (min-width: 48em) {
  .trust__grid { border-inline: 1px solid var(--line); }
  .trust__item { gap: .8rem; padding: 1.35rem 1.1rem; }
}
.trust__item svg { flex: none; width: 1.75rem; height: 1.75rem; color: var(--navy-700); }
.trust__item > span > strong { display: block; font-size: .95rem; line-height: 1.25; }
.trust__item > span > span { display: block; font-size: .82rem; color: var(--slate); line-height: 1.3; }

@media (min-width: 62em) {
  .trust__grid { grid-template-columns: repeat(4, 1fr); }
  .trust__item { padding: 1.6rem 1.4rem; }
}

/* ============ Services ============ */
.services__grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 40em) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 64em) { .services__grid { grid-template-columns: repeat(3, 1fr); } }

.service {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.75rem 1.6rem 1.85rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.service::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.service:hover {
  transform: translateY(-5px);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}
.service:hover::before { transform: scaleX(1); }

.service__icon {
  display: grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 1.15rem;
  background: var(--mist);
  border-radius: var(--radius);
  color: var(--navy-700);
  transition: background-color .25s var(--ease), color .25s var(--ease);
}
.service__icon svg { width: 1.9rem; height: 1.9rem; }
.service:hover .service__icon { background: var(--navy-700); color: var(--gold-400); }

.service h3 { margin-bottom: .5rem; }
.service p { color: var(--slate); font-size: .96rem; margin-bottom: 0; }
.service__note {
  margin-top: 1rem;
  padding-top: .9rem;
  border-top: 1px dashed var(--line);
  font-size: .87rem;
  font-weight: 500;
  color: var(--navy-700);
}

.service--cta { background: var(--navy-700); border-color: var(--navy-700); color: var(--white); }
.service--cta h3 { color: var(--white); }
.service--cta p { color: #C3CFE4; }
.service--cta::before { background: var(--gold-400); }
.service--cta .service__icon { background: rgba(255, 255, 255, .12); color: var(--gold-400); }
.service--cta:hover .service__icon { background: var(--gold-500); color: var(--navy-900); }
.service--cta .btn { margin-top: 1.5rem; align-self: flex-start; }

/* ============ Pourquoi nous ============ */
.why__grid { display: grid; gap: clamp(2rem, 1.25rem + 3.5vw, 3.75rem); align-items: center; }
@media (min-width: 62em) { .why__grid { grid-template-columns: .85fr 1.15fr; } }

.why__media { position: relative; }
.why__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.why__flag {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-top: .85rem;
  padding: .9rem 1.1rem;
  background: var(--navy-900);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  color: var(--white);
}
.why__flag .flag-be { width: 2rem; height: 1.42rem; }
.why__flag > span > strong { display: block; font-size: .92rem; line-height: 1.2; }
.why__flag > span > span { display: block; font-size: .78rem; color: #AEBBD2; }
@media (min-width: 40em) {
  .why__flag {
    position: absolute;
    right: -.5rem;
    bottom: -1.25rem;
    max-width: 16rem;
    margin-top: 0;
  }
}

.check-list { display: grid; gap: .9rem; margin: 0 0 2rem; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: flex-start; gap: .75rem; font-size: 1rem; }
.check-list svg { flex: none; width: 1.4rem; height: 1.4rem; margin-top: .14rem; color: var(--gold-700); }
@media (min-width: 48em) { .check-list { grid-template-columns: repeat(2, 1fr); gap: .9rem 1.5rem; } }

.callout {
  padding: 1.35rem 1.5rem;
  background: var(--mist);
  border-left: 4px solid var(--gold-500);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.callout p { font-size: .97rem; color: var(--slate); margin: 0; }
.callout strong { color: var(--ink); }

/* ============ Bandeau d'appel ============ */
.callband {
  position: relative;
  background: var(--navy-800);
  background-image:
    radial-gradient(70rem 38rem at 88% 0%, rgba(22, 51, 111, .92) 0%, rgba(9, 28, 68, 0) 62%),
    linear-gradient(160deg, var(--navy-800) 0%, var(--navy-900) 100%);
  color: var(--white);
  overflow: hidden;
}
.callband::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, .035) 0 2px, transparent 2px 9px);
  pointer-events: none;
}
.callband__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.75rem;
  padding-block: clamp(2.75rem, 2rem + 3.5vw, 4.5rem);
  align-items: center;
}
.callband h2 { color: var(--white); margin-bottom: .6rem; }
.callband p { color: #C3CFE4; margin-bottom: 0; max-width: 38rem; }

.callband__action { display: grid; gap: 1rem; justify-items: start; }
.callband__number {
  display: inline-flex;
  align-items: center;
  gap: .9rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.35rem + 2.8vw, 3rem);
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  line-height: 1;
  letter-spacing: .01em;
}
.callband__number:hover { color: var(--gold-400); }
.callband__icon {
  display: grid;
  place-items: center;
  flex: none;
  width: clamp(3rem, 2.4rem + 2.2vw, 3.75rem);
  height: clamp(3rem, 2.4rem + 2.2vw, 3.75rem);
  background: var(--gold-500);
  border-radius: 50%;
  color: var(--navy-900);
}
.callband__icon svg {
  width: 46%;
  height: 46%;
}
@media (min-width: 62em) {
  .callband__inner { grid-template-columns: 1.15fr .85fr; gap: 3rem; }
  .callband__action { justify-items: end; text-align: right; }
}

/* ============ Étapes ============ */
.steps {
  display: grid;
  gap: 1.25rem;
  counter-reset: step;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 40em) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 64em) { .steps { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }

.step {
  position: relative;
  padding: 1.9rem 1.7rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  transform-origin: left center;
  margin-bottom: .75rem;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  color: var(--gold-500);
}
.step h3 { font-size: 1.22rem; margin-bottom: .45rem; }
.step p { font-size: .94rem; color: var(--slate); margin: 0; }

.step { transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease); }
.step:hover { transform: translateY(-4px); border-color: transparent; box-shadow: var(--shadow); }

.steps[data-reveal-ready] .step {
  opacity: 0;
  transform: translateY(1.35rem);
  transition: opacity .6s var(--ease), transform .6s var(--ease),
              box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.steps[data-reveal-ready].is-revealed .step { opacity: 1; transform: none; }
.steps[data-reveal-ready].is-revealed .step:nth-child(2) { transition-delay: .12s; }
.steps[data-reveal-ready].is-revealed .step:nth-child(3) { transition-delay: .24s; }
.steps[data-reveal-ready].is-revealed .step:nth-child(4) { transition-delay: .36s; }

/* Impulsion permanente qui parcourt les quatre étapes.
   Cycle de 6,4 s : la carte s'allume, puis l'impulsion file vers la suivante
   et l'atteint pile au moment où celle-ci s'allume à son tour. */
.step:nth-child(1) { --i: 0; }
.step:nth-child(2) { --i: 1; }
.step:nth-child(3) { --i: 2; }
.step:nth-child(4) { --i: 3; }

.step,
.step::before,
.step:not(:last-child)::after {
  animation-duration: 6.4s;
  animation-iteration-count: infinite;
  animation-delay: calc(var(--i) * 1.6s);
}

.step { animation-name: step-frame; animation-timing-function: ease-out; }
@keyframes step-frame {
  0%   { border-color: var(--line); box-shadow: none; }
  3%   { border-color: var(--gold-500); box-shadow: 0 0 0 2px rgba(245, 179, 1, .55), 0 8px 22px rgba(245, 179, 1, .18); }
  20%  { border-color: var(--gold-500); box-shadow: 0 0 0 2px rgba(245, 179, 1, .55), 0 8px 22px rgba(245, 179, 1, .18); }
  34%  { border-color: var(--line); box-shadow: none; }
  100% { border-color: var(--line); box-shadow: none; }
}

.step::before { animation-name: step-beat; animation-timing-function: ease-in-out; }
@keyframes step-beat {
  0%   { transform: none; color: var(--gold-500); }
  5%   { transform: translateY(-4px) scale(1.1); color: var(--navy-700); }
  22%  { transform: none; color: var(--gold-500); }
  100% { transform: none; color: var(--gold-500); }
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  background-color: #CBD5E8;
  background-repeat: no-repeat;
  border-radius: 3px;
  animation-timing-function: cubic-bezier(.4, 0, .5, 1);
}

@media (min-width: 64em) {
  .step:not(:last-child)::after {
    top: 3.05rem;
    right: -1.5rem;
    width: 1.5rem;
    height: 5px;
    background-image: linear-gradient(90deg, rgba(245, 179, 1, 0) 0%, var(--gold-500) 30%, var(--gold-400) 50%, var(--gold-500) 70%, rgba(245, 179, 1, 0) 100%);
    background-size: 70% 100%;
    animation-name: step-flow-x;
  }
}
@keyframes step-flow-x {
  0%, 10% { background-position-x: -300%; }
  25%     { background-position-x: 216%; }
  31%     { background-position-x: 400%; }
  100%    { background-position-x: 400%; }
}

@media (max-width: 39.99em) {
  .step:not(:last-child)::after {
    left: 2.4rem;
    bottom: -1.25rem;
    width: 5px;
    height: 1.25rem;
    background-image: linear-gradient(180deg, rgba(245, 179, 1, 0) 0%, var(--gold-500) 30%, var(--gold-400) 50%, var(--gold-500) 70%, rgba(245, 179, 1, 0) 100%);
    background-size: 100% 70%;
    animation-name: step-flow-y;
  }
}
@keyframes step-flow-y {
  0%, 10% { background-position-y: -300%; }
  25%     { background-position-y: 216%; }
  31%     { background-position-y: 400%; }
  100%    { background-position-y: 400%; }
}

/* ============ Zone d'intervention ============ */
.zone__grid { display: grid; gap: clamp(2rem, 1.5rem + 2vw, 3rem); align-items: center; }
@media (min-width: 62em) {
  .zone__grid {
    grid-template-columns: 1.1fr .9fr;
    column-gap: clamp(2rem, 1rem + 3vw, 3.5rem);
  }
}
.zone__lists { display: grid; gap: 1.75rem; }
.zone__left .section-head { margin-bottom: clamp(1.1rem, .9rem + .8vw, 1.5rem); }
@media (max-width: 47.99em) {
  .tag-list li { padding: .34rem .7rem; font-size: .84rem; }
  .tag-list { gap: .4rem; }
}

.zone__block + .zone__block { margin-top: 1.75rem; }
.zone__block h3 { font-size: 1.15rem; margin-bottom: .9rem; }
.zone__block h3 span { color: var(--gold-800); }

.tag-list { display: flex; flex-wrap: wrap; gap: .5rem; margin: 0; padding: 0; list-style: none; }
.zone__outside { margin: 1.15rem 0 0; font-size: .95rem; color: var(--slate); }

.tag-list li {
  padding: .42rem .8rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: .87rem;
  color: var(--slate);
}
.section--mist .zone__outside { margin: 1.15rem 0 0; font-size: .95rem; color: var(--slate); }

.tag-list li { background: var(--white); }

/* ============ Carte de la zone ============ */
.zone-map {
  margin: 0;
  padding: .85rem .85rem .35rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.zone-map__frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #F7F9FC;
}
.zone-map__svg { display: block; width: 100%; height: auto; }

.zone-map__area {
  stroke: var(--white);
  stroke-width: 1.5;
  stroke-linejoin: round;
  transition: fill .18s var(--ease);
}
.zone-map__area--ctx { fill: #E6EAF2; pointer-events: none; }
.zone-map__area--peri { fill: #94A9CE; }
.zone-map__area--bxl { fill: var(--navy-700); }
.zone-map__area--peri:hover, .zone-map__area--bxl:hover,
.zone-map__area.is-active { fill: var(--gold-500); }

.zone-map__labels { pointer-events: none; }
.zone-map__dot { fill: var(--gold-500); stroke: var(--white); stroke-width: 2; }

.zone-map__base-ring { fill: var(--navy-700); stroke: var(--gold-500); stroke-width: 4; }
.zone-map__base-core { fill: var(--gold-400); }
.zone-map__pulse {
  fill: var(--navy-700);
  opacity: .25;
  transform-box: fill-box;
  transform-origin: center;
  animation: zone-pulse 2.8s var(--ease) infinite;
}
@keyframes zone-pulse {
  0%   { transform: scale(.55); opacity: .4; }
  70%  { transform: scale(1.7); opacity: 0; }
  100% { transform: scale(1.7); opacity: 0; }
}

.zone-map__label {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 600;
  fill: var(--ink);
  paint-order: stroke;
  stroke: rgba(255, 255, 255, .88);
  stroke-width: 3.5px;
  stroke-linejoin: round;
}
.zone-map__pin--base .zone-map__label { font-weight: 700; fill: var(--navy-700); }
.zone-map__title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 2px;
  fill: var(--white);
}
.zone-map__subtitle {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  fill: rgba(255, 255, 255, .72);
}

.zone-map__badge {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .38rem .7rem .38rem .55rem;
  background: var(--navy-900);
  border-radius: 100px;
  color: var(--white);
  font-size: .85rem;
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -155%) scale(.92);
  transition: opacity .15s var(--ease), transform .15s var(--ease);
  box-shadow: var(--shadow);
}
.zone-map__badge.is-visible { opacity: 1; transform: translate(-50%, -140%) scale(1); }
.zone-map__badge svg { width: 1rem; height: 1rem; color: var(--gold-400); }

.zone-map__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .5rem 1.5rem;
  padding: .85rem .4rem .4rem;
}
.zone-map__legend {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: .85rem;
  color: var(--slate);
}
.zone-map__legend li { display: flex; align-items: center; gap: .45rem; }
.zone-map__swatch { flex: none; width: .85rem; height: .85rem; border-radius: 3px; }
.zone-map__swatch--bxl { background: var(--navy-700); }
.zone-map__swatch--peri { background: #94A9CE; }
.zone-map__swatch--base {
  border-radius: 50%;
  background: var(--navy-700);
  box-shadow: inset 0 0 0 2px var(--gold-500);
}

.zone-map__credit { margin: 0; font-size: .74rem; color: var(--slate-muted); }
.zone-map__credit a { color: var(--slate-muted); }

@media (max-width: 34em) {
  .zone-map__label, .zone-map__subtitle { display: none; }
  .zone-map__title { font-size: 52px; }
}

/* ============ FAQ ============ */
.faq { max-width: 50rem; margin-inline: auto; }
.faq__item {
  background: var(--white);
  border: 1px solid #B6C4DC;
  border-left: 3px solid #B6C4DC;
  border-radius: var(--radius);
  margin-bottom: .75rem;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(11, 35, 85, .05);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.faq__item:hover { border-color: var(--navy-300); }
.faq__item[open] {
  border-color: var(--navy-300);
  border-left-color: var(--gold-500);
  box-shadow: var(--shadow-sm);
}

.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--navy-700);
  cursor: pointer;
  list-style: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { background: var(--mist); }
.faq__q svg {
  flex: none;
  width: 1.4rem;
  height: 1.4rem;
  color: var(--gold-700);
  transition: transform .25s var(--ease);
}
.faq__item[open] .faq__q svg { transform: rotate(45deg); }

.faq__a { padding: 0 1.35rem 1.35rem; }
.faq__a p { font-size: .97rem; color: var(--slate); }
.faq__a p:last-child { margin-bottom: 0; }


.faq__help {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.75rem;
  max-width: 50rem;
  margin: 1.85rem auto 0;
  padding: 1.4rem 1.6rem;
  background: var(--navy-900);
  border-radius: var(--radius);
  color: #AEBBD2;
}
.faq__help p { margin: 0; font-size: .95rem; }
.faq__help strong {
  display: block;
  margin-bottom: .15rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--white);
}

/* ============ Contact ============ */
.contact__grid { display: grid; min-width: 0; gap: clamp(2rem, 1.25rem + 3.5vw, 3.5rem); align-items: start; }
@media (min-width: 62em) { .contact__grid { grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); } }

.contact__form-wrap {
  padding: clamp(1.5rem, 1.1rem + 1.8vw, 2.25rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.contact__panel {
  padding: clamp(1.5rem, 1.1rem + 1.8vw, 2.25rem);
  background: var(--navy-900);
  border-radius: var(--radius-lg);
  color: #C6D1E4;
}
.contact__panel h3 { color: var(--white); }
.contact__panel > p { color: #AEBBD2; }

.contact__phone {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.6rem 0 .5rem;
  padding: 1.1rem 1.3rem;
  background: var(--gold-500);
  border-radius: var(--radius);
  color: var(--navy-900);
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(245, 179, 1, .22);
  transition: background-color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
}
.contact__phone:hover {
  background: var(--gold-400);
  color: var(--navy-900);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(245, 179, 1, .32);
}
.contact__phone-icon {
  display: grid;
  place-items: center;
  flex: none;
  width: 3rem;
  height: 3rem;
  background: var(--navy-900);
  border-radius: 50%;
  color: var(--gold-400);
}
.contact__phone-icon svg { width: 46%; height: 46%; }
.contact__phone small {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .8;
}
.contact__phone strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 1.35rem + 1.2vw, 2.15rem);
  line-height: 1.05;
  letter-spacing: .01em;
}

.contact-list { display: grid; gap: 1.1rem; margin: 1.75rem 0; padding: 0; list-style: none; }
.contact-list li { display: flex; align-items: flex-start; gap: .9rem; }
.contact-list svg { flex: none; width: 1.35rem; height: 1.35rem; margin-top: .2rem; color: var(--gold-500); }
.contact-list small {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--slate-light);
  margin-bottom: .15rem;
}
.contact-list a, .contact-list strong {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  line-height: 1.35;
}
.contact-list a:hover { color: var(--gold-400); text-decoration: underline; }
.contact-list > li > span > span { display: block; font-size: .88rem; color: #AEBBD2; }

.contact__prep {
  padding: 1.25rem 1.35rem;
  background: rgba(255, 255, 255, .06);
  border-radius: var(--radius);
}
.contact__prep h4 { color: var(--white); font-size: 1.05rem; margin-bottom: .6rem; }
.contact__prep ul { margin: 0; padding-left: 1.1rem; font-size: .91rem; }
.contact__prep li + li { margin-top: .3rem; }

/* ============ Formulaire ============ */
.form { display: grid; gap: 1.1rem; }
.form__row { display: grid; gap: 1.1rem; }
@media (min-width: 40em) { .form__row--2 { grid-template-columns: repeat(2, 1fr); } }

.field { display: grid; gap: .4rem; }
.field label { font-size: .88rem; font-weight: 600; color: var(--ink); }
.field label .req { color: var(--be-red); }

.field input, .field select, .field textarea {
  width: 100%;
  padding: .8rem .95rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { min-height: 7.5rem; resize: vertical; }
.field select { appearance: none; padding-right: 2.5rem; background-image: none; cursor: pointer; }
.field--select { position: relative; }
.field--select::after {
  content: "";
  position: absolute;
  right: 1rem;
  bottom: 1.25rem;
  width: .5rem;
  height: .5rem;
  border-right: 2px solid var(--slate);
  border-bottom: 2px solid var(--slate);
  transform: rotate(45deg);
  pointer-events: none;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--navy-500);
  box-shadow: 0 0 0 3px rgba(22, 51, 111, .14);
}
.field input::placeholder, .field textarea::placeholder { color: var(--slate-muted); }

.field--consent { grid-template-columns: auto 1fr; gap: .7rem; align-items: start; }
.field--consent input { width: 1.15rem; height: 1.15rem; margin-top: .22rem; accent-color: var(--navy-700); }
.field--consent label { font-size: .87rem; font-weight: 400; color: var(--slate); line-height: 1.5; }

.form__legal { font-size: .85rem; color: var(--slate); margin: 0; }

.form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form__notice {
  display: none;
  gap: .75rem;
  padding: 1rem 1.15rem;
  background: #FFF6DF;
  border: 1px solid var(--gold-400);
  border-radius: var(--radius-sm);
  font-size: .92rem;
  line-height: 1.55;
  color: #6B4E00;
}
.form__notice.is-visible { display: flex; }
.form__notice svg { flex: none; width: 1.3rem; height: 1.3rem; margin-top: .1rem; color: var(--gold-800); }
.form__notice a { color: #6B4E00; font-weight: 600; }

/* Zone de statut du formulaire */
.form__status {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  margin: 0;
  padding: .9rem 1.1rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: .94rem;
  line-height: 1.55;
}
.form__status--attente { background: var(--mist); border-color: var(--line); color: var(--slate); }
.form__status--succes  { background: #E8F5EC; border-color: #A8D8B9; color: #1B5E33; }
.form__status--erreur  { background: #FDECEC; border-color: #F0B4B4; color: #8E1D1D; }
.form__status a { color: inherit; font-weight: 600; }

/* Vérification anti-robots : le widget mesure 300 px et ne rétrécit pas. */
.form__turnstile { display: flex; justify-content: center; min-height: 65px; }
.form__turnstile .cf-turnstile { max-width: 100%; }

/* Halo bref après un pré-remplissage depuis un lien */
.field--surligne input,
.field--surligne select,
.field--surligne textarea {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(245, 179, 1, .28);
}

/* Sous 390 px, le panneau passe bord à bord pour garder 300 px utiles. */
@media (max-width: 24.375em) {
  .contact__form-wrap {
    margin-inline: calc(-1 * var(--gutter));
    border-inline: 0;
    border-radius: 0;
    padding-inline: min(var(--gutter), calc((100vw - 300px) / 2));
  }
}

/* ============ Footer ============ */
.footer { background: var(--navy-900); color: #A9B7CF; font-size: .94rem; }
.footer__main {
  display: grid;
  gap: 2.25rem;
  padding-block: clamp(2.75rem, 2rem + 3vw, 4rem);
}
@media (min-width: 48em) { .footer__main { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; } }
@media (min-width: 62em) { .footer__main { grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 3rem; } }

.footer__brand img { width: auto; height: 5.5rem; margin-bottom: 1.1rem; }
.footer__brand p { max-width: 24rem; }

.footer h2 {
  font-size: 1.1rem;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.1rem;
}
.footer ul { margin: 0; padding: 0; list-style: none; display: grid; gap: .6rem; }
.footer a { color: #A9B7CF; text-decoration: none; }
.footer a:hover { color: var(--gold-400); text-decoration: underline; }

.footer__contact li { display: flex; align-items: flex-start; gap: .7rem; }
.footer__contact svg { flex: none; width: 1.15rem; height: 1.15rem; margin-top: .22rem; color: var(--gold-500); }
.footer__contact strong { display: block; color: var(--white); font-weight: 600; }

.footer__be {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin-top: 1.35rem;
  padding: .7rem .9rem;
  background: rgba(255, 255, 255, .06);
  border-radius: var(--radius-sm);
  font-size: .86rem;
  color: #C6D1E4;
}

.footer ul.footer__lang { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.1rem; }
.footer ul.footer__lang li { display: block; }
.footer__lang a, .footer__lang > li > span {
  display: block;
  padding: .35rem .75rem;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 100px;
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none;
}
.footer__lang a[aria-current="true"] { background: var(--gold-500); border-color: var(--gold-500); color: var(--navy-900); }
.footer__lang > li > span[aria-disabled="true"] { color: #8493AE; cursor: not-allowed; }

.footer__bottom {
  display: grid;
  gap: .85rem;
  padding-block: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: .87rem;
}
.footer__bottom p { margin: 0; }
.footer__credit a { color: var(--white); font-weight: 600; }
.footer__credit a:hover { color: var(--gold-400); }
@media (min-width: 48em) {
  .footer__bottom { grid-template-columns: 1fr auto; align-items: center; }
  .footer__credit { text-align: right; }
}

/* ============ Éléments flottants ============ */
.to-top {
  position: fixed;
  right: 1rem;
  bottom: 5.25rem;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 2.9rem;
  height: 2.9rem;
  padding: 0;
  background: var(--navy-700);
  border: 0;
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(.75rem);
  box-shadow: var(--shadow);
  transition: opacity .25s var(--ease), visibility .25s var(--ease),
              transform .25s var(--ease), background-color .2s var(--ease);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--gold-500); color: var(--navy-900); }
.to-top svg { width: 1.3rem; height: 1.3rem; }

.callbar {
  position: fixed;
  inset: auto 0 0;
  z-index: 95;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, .18);
  box-shadow: 0 -4px 18px rgba(7, 22, 52, .16);
}
.callbar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .95rem .5rem;
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
}
.callbar a svg { width: 1.15rem; height: 1.15rem; }
.callbar__call { background: var(--navy-700); color: var(--white); }
.callbar__quote { background: var(--gold-500); color: var(--navy-900); }

@media (min-width: 62em) {
  body { padding-bottom: 0; }
  .callbar { display: none; }
  .to-top { right: 1.5rem; bottom: 1.5rem; width: 3.15rem; height: 3.15rem; }
}

/* ============ Page mentions légales ============ */
.page-hero {
  background: var(--navy-800);
  background-image: linear-gradient(160deg, var(--navy-800) 0%, var(--navy-900) 100%);
  color: var(--white);
  padding-block: clamp(2.5rem, 1.75rem + 3.5vw, 4.25rem);
}
.page-hero h1 { color: var(--white); margin-bottom: .35rem; }
.page-hero p { color: #AEBBD2; margin: 0; }

.breadcrumb { margin-bottom: 1.1rem; font-size: .85rem; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: .5rem; margin: 0; padding: 0; list-style: none; }
.breadcrumb li { display: flex; align-items: center; gap: .5rem; color: #8FA0BE; }
.breadcrumb li + li::before { content: "/"; color: #56688A; }
.breadcrumb a { color: #C6D1E4; text-decoration: none; }
.breadcrumb a:hover { color: var(--gold-400); text-decoration: underline; }

.legal { max-width: 48rem; }
.legal h2 {
  font-size: clamp(1.45rem, 1.25rem + .9vw, 1.85rem);
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}
.legal > h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.legal h3 { font-size: 1.2rem; margin-top: 1.75rem; }
.legal p, .legal li { color: var(--slate); }
.legal li + li { margin-top: .4rem; }
.legal strong { color: var(--ink); }

.legal__table { width: 100%; border-collapse: collapse; margin-bottom: 1.15rem; }
.legal__table th, .legal__table td {
  padding: .75rem .9rem;
  border: 1px solid var(--line);
  text-align: left;
  font-size: .95rem;
  vertical-align: top;
}
.legal__table th { width: 40%; background: var(--mist); font-weight: 600; color: var(--ink); }
.legal__table td { color: var(--slate); }

/* ============ Page 404 ============ */
.notfound { display: grid; gap: clamp(2rem, 1.5rem + 2vw, 3rem); align-items: start; }
@media (min-width: 62em) { .notfound { grid-template-columns: 1.1fr .9fr; } }

.notfound__content h2, .notfound__aside h2 {
  font-size: clamp(1.35rem, 1.2rem + .7vw, 1.65rem);
  margin-bottom: 1.1rem;
}
.notfound__links { display: grid; gap: .2rem; margin: 0; padding: 0; list-style: none; }
.notfound__links a {
  display: block;
  padding: .8rem .2rem;
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: color .2s var(--ease), padding-left .2s var(--ease);
}
.notfound__links a:hover { color: var(--navy-700); padding-left: .6rem; }

.notfound__aside {
  padding: clamp(1.5rem, 1.1rem + 1.8vw, 2.25rem);
  background: var(--navy-900);
  border-radius: var(--radius-lg);
  color: #AEBBD2;
}
.notfound__aside h2 { color: var(--white); }
.notfound__aside > p { font-size: .96rem; }
.notfound__mail { margin: 1.1rem 0 0; font-size: .95rem; text-align: center; }
.notfound__mail a { color: var(--white); font-weight: 600; }
.notfound__mail a:hover { color: var(--gold-400); }

/* ============ Préférences système ============ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .btn:hover, .service:hover { transform: none; }
}

@media print {
  .topbar, .header, .callbar, .to-top, .callband, .hero__media, .form { display: none !important; }
  body { color: #000; }
  .section, .footer__main { padding-block: 1rem; }
}
.legal__update { margin-top: 2rem; font-size: .88rem; color: var(--slate-muted); }
.legal .btn { margin-top: 1.5rem; }
