/* ============================================================
   Ozora - design system
   Palette (CDC §7)
   ============================================================ */
:root {
  --blue: #1b5dab;
  --blue-dark: #0f3c73;
  --blue-deep: #0b2c55;
  --blue-light: #2e7bd6;
  --orange: #f39200;
  --orange-lt: #fbb040;
  --orange-dark: #d97f00;
  --ink: #1c2530;
  --ink-soft: #5a6472;
  --bg: #f4f8fc;
  --white: #ffffff;
  --line: #e3ebf5;

  --radius: 16px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --maxw: 1200px;
  --trustbar-h: 95px; /* hauteur du bandeau de garanties, pour caler hero + bandeau sur un écran */
  --shadow-sm: 0 1px 2px rgba(15, 60, 115, 0.06),
    0 4px 14px rgba(15, 60, 115, 0.06);
  --shadow-md: 0 14px 40px rgba(15, 60, 115, 0.14);
  --shadow-lg: 0 30px 70px rgba(11, 44, 85, 0.28);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 96px;
}
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img,
svg {
  max-width: 100%;
  display: block;
}
[hidden] {
  display: none !important;
}
a {
  color: var(--blue);
  text-decoration: none;
}
h1,
h2,
h3,
h4 {
  line-height: 1.12;
  margin: 0;
  color: var(--blue-dark);
  font-weight: 800;
  letter-spacing: -0.025em;
}
p {
  margin: 0;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 200;
  background: var(--blue-dark);
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 0 8px 0;
}
.skip-link:focus {
  left: 0;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
}

/* icônes trait */
svg.ic,
.step__icon svg,
.features .ic {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  padding: 15px 26px;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.16s var(--ease), background 0.2s var(--ease),
    color 0.2s var(--ease), border-color 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0);
}
.btn--primary {
  background: var(--orange);
  color: #fff;
  box-shadow: -3px 6px 22px rgba(243, 146, 0, 0.35);
}
.btn--primary:hover {
  background: var(--orange-dark);
  color: #fff;
  box-shadow: -3px 6px 22px rgba(243, 146, 0, 0.35);
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border-color: #fff;
}
.btn--sm {
  padding: 9px 20px;
  font-size: 15px;
}
.btn--lg {
  padding: 14px 32px;
  font-size: 15px;
}
.btn--block {
  width: 100%;
}

/* ---------- Titres / eyebrow ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  margin: 0 0 18px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}
.eyebrow--light {
  color: var(--orange-lt);
}
.center .eyebrow {
  justify-content: center;
}
.section__title {
  font-size: clamp(1.45rem, 3vw, 2.1rem);
}
.section__head {
  max-width: 720px;
  margin-bottom: 52px;
}
.section__head.center {
  margin-inline: auto;
  text-align: center;
}
.lead {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin-top: 18px;
}
.muted {
  color: var(--ink-soft);
  margin-top: 14px;
}
.txt-accent {
  color: var(--orange);
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  margin-top: 22px;
}
.link-arrow span {
  transition: transform 0.2s var(--ease);
}
.link-arrow:hover span {
  transform: translateX(4px);
}

/* ---------- animation reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: fixed;
  top: 14px;
  left: 0;
  right: 0;
  z-index: 100;
  padding-inline: 12px;
  pointer-events: none;
}
.nav__inner {
  pointer-events: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  height: 66px;
  padding: 0 12px 0 24px;
  background: rgba(13, 45, 86, 0.55);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 34px rgba(11, 30, 60, 0.22);
  transition: background 0.28s var(--ease), box-shadow 0.28s var(--ease);
}
.brand {
  display: inline-flex;
  align-items: center;
}
.brand__logo {
  height: 52px;
  width: auto;
}
.nav__links {
  display: flex;
  gap: 34px;
  justify-content: center;
}
.nav__links a {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 15px;
  position: relative;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.22s var(--ease);
}
.nav__links a:hover {
  color: #fff;
}
.nav__links a:hover::after {
  width: 100%;
}
.nav__actions {
  display: flex;
  align-items: center;
}
.nav.is-scrolled .nav__inner {
  background: rgba(13, 45, 86, 0.92);
  box-shadow: 0 14px 40px rgba(11, 30, 60, 0.32);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
  margin-left: auto;
}
.nav__burger span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.2s var(--ease);
}
.nav__mobile {
  display: none;
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  color: #fff;
  /* hero + bandeau de garanties = un écran entier */
  min-height: calc(100vh - var(--trustbar-h));
  min-height: calc(100svh - var(--trustbar-h));
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      100deg,
      rgba(11, 30, 60, 0.94) 0%,
      rgba(11, 30, 60, 0.82) 38%,
      rgba(11, 30, 60, 0.5) 72%,
      rgba(11, 30, 60, 0.32) 100%
    ),
    radial-gradient(
      900px 500px at 85% 110%,
      rgba(243, 146, 0, 0.15),
      transparent 60%
    );
}
/* filet fallback si la photo manque */
.hero__media {
  background: linear-gradient(155deg, var(--blue-deep), var(--blue-dark));
}
.hero__inner {
  position: relative;
  z-index: 1;
  padding: 130px 22px 90px;
  max-width: 900px;
}
.hero__title {
  font-size: clamp(2rem, 4.8vw, 3.3rem);
  color: #fff;
  margin-bottom: 24px;
  font-weight: 900;
  letter-spacing: -0.03em;
}
.hero__sub {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 60ch;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin-top: 40px;
}
.hero__badges li {
  position: relative;
  padding-left: 27px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}
.hero__badges li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--orange)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E")
    center/10px no-repeat;
}

/* vague en bas du hero (rappel du logo) */
.hero__wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 3;
  line-height: 0;
  pointer-events: none;
}
.hero__wave svg {
  width: 100%;
  height: 92px;
  display: block;
}
.hero__wave-back {
  fill: rgba(255, 255, 255, 0.4);
}
.hero__wave-front {
  fill: #fff;
}

/* ============================================================
   Bandeau de confiance
   ============================================================ */
.trustbar {
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 6px 20px rgba(15, 60, 115, 0.05);
}
.trustbar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trustbar__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 26px;
  color: var(--blue-dark);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.25;
}
.trustbar__item + .trustbar__item {
  border-left: 1px solid var(--line);
}
.trustbar__label {
  color: var(--blue-dark);
}
.trustbar__ic {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: #fff4e6;
  color: var(--orange);
  box-shadow: inset 0 0 0 1px rgba(243, 146, 0, 0.14);
}
.trustbar__ic .ic {
  width: 23px;
  height: 23px;
}

/* ============================================================
   Bande défilante (marquee)
   ============================================================ */
.marquee {
  background: var(--blue-dark);
  overflow: hidden;
  padding: 18px 0;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}
.marquee__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 34s linear infinite;
}
.marquee__track span {
  padding: 0 30px;
  white-space: nowrap;
  font-weight: 800;
  font-size: clamp(1rem, 2vw, 1.4rem);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #fff;
}
.marquee__track span.is-outline {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.55);
}
.marquee__track i {
  color: var(--orange);
  font-size: 0.7rem;
  font-style: normal;
}
.marquee:hover .marquee__track {
  animation-play-state: paused;
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track {
    animation: none;
  }
}

/* ============================================================
   Sections & media
   ============================================================ */
.section {
  padding: 100px 0;
}
.section--alt {
  background: var(--bg);
}

/* section sur photo : image de fond + voile sombre */
.section--photo {
  position: relative;
  overflow: hidden;
  color: #fff;
}
.section--photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/img/hero.jpg") center / cover no-repeat;
}
.section--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    165deg,
    rgba(7, 18, 35, 0.94) 0%,
    rgba(11, 44, 85, 0.88) 50%,
    rgba(7, 18, 35, 0.94) 100%
  );
}
.section--photo .container {
  position: relative;
  z-index: 1;
}
.section--photo .eyebrow {
  color: var(--orange-lt);
}
.section--photo .section__title {
  color: #fff;
}
.section--photo .lead {
  color: rgba(255, 255, 255, 0.78);
}

.media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.media--reverse .media__figure {
  order: -1;
}
.media__text .btn,
.media__text .checklist + .btn {
  margin-top: 30px;
}
.media__figure {
  position: relative;
}
.media__figure img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  background: linear-gradient(140deg, var(--blue-light), var(--blue-dark));
  aspect-ratio: 9/7;
}
.media__badge {
  position: absolute;
  left: -18px;
  bottom: 28px;
  background: #fff;
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  max-width: 260px;
  border: 1px solid var(--line);
}
.media__badge strong {
  display: block;
  color: var(--blue-dark);
  font-size: 15px;
}
.media__badge span {
  color: var(--ink-soft);
  font-size: 13.5px;
}
.media__badge--accent {
  border-top: 4px solid var(--orange);
  right: -18px;
  left: auto;
}

/* cadre + halo décoratifs derrière la photo */
.media__figure--accent {
  position: relative;
}
.media__figure--accent img {
  position: relative;
  z-index: 1;
}
.media__figure--accent .media__badge {
  z-index: 2;
}
.media__figure--accent::before {
  /* cadre outline décalé */
  content: "";
  position: absolute;
  top: -16px;
  right: -16px;
  width: 58%;
  height: 72%;
  border: 2px solid rgba(46, 123, 214, 0.4);
  border-radius: 20px;
  z-index: 0;
}
.media__figure--accent::after {
  /* halo doux de profondeur */
  content: "";
  position: absolute;
  z-index: 0;
  left: -26px;
  bottom: -26px;
  width: 62%;
  height: 62%;
  background: radial-gradient(
    circle at 40% 40%,
    rgba(243, 146, 0, 0.2),
    rgba(46, 123, 214, 0.12) 65%,
    transparent 70%
  );
  border-radius: 50%;
  filter: blur(8px);
}

/* Cards de l'offre — glassmorphism (remplace la photo) */
.offer-cards {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 4px;
  padding: 8px;
  isolation: isolate;
}
.offer-cards__glow {
  position: absolute;
  inset: -20% -6%;
  z-index: -1;
  background: radial-gradient(
      45% 70% at 18% 30%,
      rgba(46, 123, 214, 0.14),
      transparent 70%
    ),
    radial-gradient(
      45% 70% at 82% 70%,
      rgba(243, 146, 0, 0.13),
      transparent 70%
    );
  filter: blur(50px);
  border-radius: var(--radius-lg);
}
/* flèches courbes reliant les cards */
.offer-arrow {
  align-self: center;
  width: 74px;
  height: auto;
  color: rgba(46, 123, 214, 0.7);
  overflow: visible;
}
.offer-arrow--accent {
  color: rgba(243, 146, 0, 0.85);
}
.offer-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 26px 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.72),
    rgba(255, 255, 255, 0.42)
  );
  -webkit-backdrop-filter: blur(7px) saturate(130%);
  backdrop-filter: blur(7px) saturate(130%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow-md);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.offer-card__num {
  flex: none;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: var(--blue-dark);
  background: linear-gradient(
    140deg,
    rgba(46, 123, 214, 0.16),
    rgba(46, 123, 214, 0.05)
  );
  border: 1px solid rgba(46, 123, 214, 0.22);
}
.offer-card__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.offer-card__body strong {
  color: var(--blue-deep);
  font-size: 1.02rem;
  line-height: 1.35;
}
.offer-card__body span {
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.5;
}
.offer-card--accent {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.78),
    rgba(255, 244, 230, 0.5)
  );
  border-color: rgba(243, 146, 0, 0.35);
}
.offer-card--accent .offer-card__num {
  color: var(--orange-dark);
  background: linear-gradient(
    140deg,
    rgba(243, 146, 0, 0.2),
    rgba(243, 146, 0, 0.06)
  );
  border-color: rgba(243, 146, 0, 0.32);
}
.offer-cta {
  margin-top: 44px;
  text-align: center;
}

/* puces domaines d'intervention */
.domains {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 26px;
}
.domains li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 17px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--blue-dark);
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s var(--ease), border-color 0.18s var(--ease),
    box-shadow 0.18s var(--ease);
}
.domains li:hover {
  transform: translateY(-2px);
  border-color: var(--orange);
  box-shadow: 0 8px 18px rgba(243, 146, 0, 0.16);
}
.domains .ic {
  width: 18px;
  height: 18px;
  color: var(--orange);
}

/* ============================================================
   Section "Pour qui" : contenu centré + tuiles flottantes
   ============================================================ */
.whoc {
  position: relative;
  overflow: hidden;
}
.whoc__inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  text-align: center;
}
.whoc__inner .eyebrow {
  justify-content: center;
}
.whoc__inner .lead {
  max-width: 58ch;
  margin-inline: auto;
}
.whoc__inner .domains {
  justify-content: center;
  margin-top: 28px;
}
.whoc__inner .muted {
  margin-top: 22px;
}
.whoc__inner .btn {
  margin-top: 28px;
}

.btn--navy {
  background: var(--blue-dark);
  color: #fff;
  box-shadow: 0 8px 22px rgba(15, 60, 115, 0.28);
}
.btn--navy:hover {
  background: var(--blue);
  color: #fff;
}

/* tuiles décoratives réparties sur les côtés */
.whoc__float {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1s var(--ease) 0.35s;
}
.whoc__inner.is-in + .whoc__float {
  opacity: 1;
}
.whoc__tile {
  position: absolute;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 17px;
  color: #fff;
  box-shadow: 0 16px 32px rgba(15, 60, 115, 0.22);
  animation: floaty 6s ease-in-out infinite;
}
.whoc__tile .ic {
  width: 26px;
  height: 26px;
}
.whoc__tile--1 {
  left: 7%;
  top: 22%;
  --r: -9deg;
  background: linear-gradient(145deg, #fbb040, #f39200);
}
.whoc__tile--2 {
  left: 15%;
  top: 56%;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  --r: 7deg;
  background: linear-gradient(145deg, #2e7bd6, #1b5dab);
  animation-delay: -1.6s;
}
.whoc__tile--2 .ic {
  width: 22px;
  height: 22px;
}
.whoc__tile--3 {
  left: 5%;
  bottom: 16%;
  width: 52px;
  height: 52px;
  --r: -5deg;
  background: linear-gradient(145deg, #34d399, #0ea56f);
  animation-delay: -3s;
}
.whoc__tile--4 {
  right: 6%;
  top: 20%;
  --r: 8deg;
  background: linear-gradient(145deg, #5a8fdb, #0f3c73);
  animation-delay: -2.2s;
}
.whoc__tile--5 {
  right: 16%;
  top: 55%;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  --r: -12deg;
  background: linear-gradient(145deg, #f4695b, #d3372a);
  animation-delay: -4.4s;
}
.whoc__tile--5 .ic {
  width: 21px;
  height: 21px;
}
.whoc__tile--6 {
  right: 7%;
  bottom: 14%;
  width: 52px;
  height: 52px;
  --r: -7deg;
  background: linear-gradient(145deg, #fbb040, #d97f00);
  animation-delay: -5.2s;
}
/* tuiles en illustration 3D : l'objet flotte seul, sans fond */
.whoc__tile--img {
  width: 50px;
  height: 66px;
  background: none;
  box-shadow: none;
  border-radius: 0;
}
.whoc__tile--img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 14px 22px rgba(15, 60, 115, 0.28));
}

.whoc__ghost {
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: var(--bg);
  border: 1px solid var(--line);
}
.whoc__ghost--1 {
  left: 23%;
  top: 30%;
  transform: rotate(14deg);
}
.whoc__ghost--2 {
  left: 27%;
  bottom: 22%;
  transform: rotate(-10deg);
}
.whoc__ghost--3 {
  right: 24%;
  top: 32%;
  transform: rotate(-16deg);
}
.whoc__ghost--4 {
  right: 27%;
  bottom: 20%;
  transform: rotate(10deg);
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0) rotate(var(--r, 0deg));
  }
  50% {
    transform: translateY(-10px) rotate(var(--r, 0deg));
  }
}

/* en dessous de 1020px, les côtés deviennent trop étroits : on retire le décor */
@media (max-width: 1020px) {
  .whoc__float {
    display: none;
  }
}

/* comment ça marche : liste numérotée + visuel blob */
/* texte de fond géant (comme "CONTACT"), placé au-dessus du contenu */
.howx__watermark {
  display: block;
  margin: 0 0 4px;
  text-align: center;
  font-size: clamp(2rem, 7vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.12);
  white-space: nowrap;
  overflow: hidden;
  pointer-events: none;
}
.howx {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.howx__list {
  display: block;
}
.howx__item {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  transition: opacity 0.25s var(--ease);
}
.howx__item:first-child {
  padding-top: 0;
}
.howx__item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.howx__num {
  flex: none;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 2px solid var(--line);
  background: #fff;
  color: var(--ink-soft);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.02em;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease),
    background 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.howx__body h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  transition: color 0.2s var(--ease);
}
.howx__body p {
  color: var(--ink-soft);
}
.howx__item.is-active .howx__num,
.howx__item:hover .howx__num {
  color: var(--orange);
  border-color: var(--orange);
  background: #fff4e6;
  box-shadow: 0 8px 20px rgba(243, 146, 0, 0.22);
}

/* icône à droite de chaque étape */
.howx__ico {
  flex: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  align-self: center;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--blue);
  transition: background 0.3s var(--ease), color 0.3s var(--ease),
    border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.howx__ico .ic {
  width: 21px;
  height: 21px;
}
.howx__item.is-active .howx__ico,
.howx__item:hover .howx__ico {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  transform: rotate(-8deg) scale(1.06);
}

/* variante sur fond photo sombre */
.section--photo .howx__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.section--photo .howx__item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding-bottom: 26px;
}
.section--photo .howx__body h3 {
  color: #fff;
}
.section--photo .howx__body p {
  color: rgba(255, 255, 255, 0.72);
}
.section--photo .howx__num {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.8);
}
.section--photo .howx__item.is-active .howx__num,
.section--photo .howx__item:hover .howx__num {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  box-shadow: 0 10px 26px rgba(243, 146, 0, 0.35);
}
.section--photo .howx__ico {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--orange-lt);
}
.section--photo .howx__item.is-active .howx__ico,
.section--photo .howx__item:hover .howx__ico {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.howx__figure {
  position: relative;
  width: 100%;
  max-width: 460px;
  margin-inline: auto;
  aspect-ratio: 1 / 1;
}
.howx__img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 63% 37% 58% 42% / 55% 52% 48% 45%;
  box-shadow: var(--shadow-md);
}
.howx__glow {
  position: absolute;
  z-index: 0;
  right: -6%;
  top: 4%;
  width: 84%;
  height: 84%;
  background: radial-gradient(
    circle at 40% 40%,
    rgba(243, 146, 0, 0.22),
    rgba(46, 123, 214, 0.14) 70%,
    transparent 72%
  );
  border-radius: 50% 50% 55% 45% / 55% 45% 55% 45%;
  filter: blur(8px);
}
.howx__arc {
  position: absolute;
  z-index: 2;
  inset: -7%;
  width: 114%;
  height: 114%;
  pointer-events: none;
  overflow: visible;
}

/* checklist */
.checklist {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}
.checklist li {
  position: relative;
  padding-left: 38px;
  color: var(--ink-soft);
}
.checklist strong {
  color: var(--blue-dark);
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--orange)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E")
    center/13px no-repeat;
}

/* features (liste icônes) */
.features {
  display: grid;
  gap: 22px;
  margin-top: 28px;
}
.features li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.features .ic {
  flex: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: 12px;
  color: var(--blue);
  background: #eaf2fc;
}
.section--alt .features .ic {
  background: #fff;
}
.features strong {
  display: block;
  color: var(--blue-dark);
  font-size: 1rem;
  margin-bottom: 3px;
}
.features p {
  color: var(--ink-soft);
}

/* stats */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
  text-align: center;
}
.stats li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}
.stats__num {
  display: block;
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--blue);
}
.stats__label {
  color: var(--ink-soft);
  font-size: 15px;
}

/* ============================================================
   À propos / Experts
   ============================================================ */
/* ============================================================
   À propos — section sombre avec image de fond + cards
   ============================================================ */
.about {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 96px 0 88px;
  color: #fff;
  background: var(--blue-deep);
}
.about__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("assets/img/expert.jpg") center left / cover no-repeat;
  transform: scale(1.02);
}
.about__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
      100deg,
      rgba(9, 26, 48, 0.4) 0%,
      rgba(9, 26, 48, 0.72) 42%,
      rgba(9, 26, 48, 0.94) 100%
    ),
    radial-gradient(
      70% 90% at 88% 30%,
      rgba(243, 146, 0, 0.14),
      transparent 60%
    );
}
.about__inner {
  position: relative;
  z-index: 1;
}
.about__watermark {
  display: block;
  margin: 0 0 6px;
  text-align: center;
  font-size: clamp(2rem, 7vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.12);
  white-space: nowrap;
  overflow: hidden;
  pointer-events: none;
}
/* carte "engagement" en verre, placée en haut à droite */
.about__lead {
  max-width: 560px;
  margin-left: auto;
  padding: 32px 34px;
  border-radius: var(--radius-lg);
  background: rgba(14, 30, 52, 0.55);
  -webkit-backdrop-filter: blur(10px) saturate(130%);
  backdrop-filter: blur(10px) saturate(130%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-lg);
}
.about__lead-title {
  margin: 6px 0 14px;
  font-size: clamp(1.4rem, 2.6vw, 1.95rem);
  font-weight: 800;
  color: var(--orange-lt);
}
.about__lead-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}
/* rangée de 3 cards */
.about__cards {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.about-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 28px 26px;
  border-radius: var(--radius-lg);
  background: rgba(14, 30, 52, 0.62);
  -webkit-backdrop-filter: blur(10px) saturate(130%);
  backdrop-filter: blur(10px) saturate(130%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-md);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease),
    background 0.4s var(--ease);
}
.about-card:hover {
  transform: translateY(-5px);
  border-color: rgba(243, 146, 0, 0.4);
  background: rgba(18, 37, 62, 0.72);
}
.about-card__ic {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  color: var(--orange-lt);
  background: rgba(243, 146, 0, 0.16);
  border: 1px solid rgba(243, 146, 0, 0.28);
}
.about-card__ic .ic {
  width: 22px;
  height: 22px;
}
.about-card__title {
  margin: 4px 0 0;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--orange-lt);
}
.about-card__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.6;
}
.about-card__link {
  margin-top: auto;
  padding-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: #fff;
}
.about-card__arrow {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.about-card__arrow .ic {
  width: 17px;
  height: 17px;
}
.about-card__link:hover .about-card__arrow {
  transform: translateX(4px);
  background: var(--orange-lt);
}
.about-card--accent {
  border-color: rgba(243, 146, 0, 0.32);
  background: linear-gradient(
    140deg,
    rgba(40, 27, 8, 0.6),
    rgba(14, 30, 52, 0.62)
  );
}

/* ============================================================
   Contact
   ============================================================ */
.contact {
  position: relative;
  color: #fff;
  padding: 104px 0 92px;
  overflow: hidden;
  background: #071324;
}
.contact__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(
      55% 42% at 50% -6%,
      rgba(46, 123, 214, 0.3),
      transparent 62%
    ),
    radial-gradient(
      45% 45% at 92% 10%,
      rgba(243, 146, 0, 0.14),
      transparent 60%
    ),
    linear-gradient(180deg, #0a1f3b 0%, #071324 100%);
}
.contact__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 60px;
  align-items: start;
}
.contact__watermark {
  position: absolute;
  z-index: -1;
  top: -74px;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(4rem, 15vw, 12rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.05);
  white-space: nowrap;
  pointer-events: none;
}
/* colonne gauche */
.contact__pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 18px 7px 7px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.13);
  font-weight: 600;
  font-size: 14px;
  color: #fff;
}
.contact__pill-ic {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}
.contact__pill-ic .ic {
  width: 16px;
  height: 16px;
}
.contact__title {
  margin-top: 22px;
  font-size: clamp(2rem, 4.6vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.08;
  color: #fff;
}
.contact__sub {
  margin-top: 14px;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.66);
  max-width: 42ch;
}
.contact__cards {
  margin-top: 34px;
  display: grid;
  gap: 16px;
}
.ccard {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease),
    border-color 0.3s var(--ease);
}
a.ccard:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(243, 146, 0, 0.4);
}
.ccard__ic {
  flex: none;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
}
.ccard__ic .ic {
  width: 22px;
  height: 22px;
}
.ccard__txt {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.ccard__txt strong {
  font-size: 15px;
  font-weight: 700;
}
.ccard__txt span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  overflow: hidden;
  text-overflow: ellipsis;
}
.ccard__arrow {
  flex: none;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease),
    border-color 0.3s var(--ease);
}
.ccard__arrow .ic {
  width: 18px;
  height: 18px;
}
a.ccard:hover .ccard__arrow {
  background: var(--orange);
  border-color: var(--orange);
  transform: translate(2px, -2px);
}

/* Formulaire (thème sombre) */
.contact__panel {
  position: relative;
  z-index: 1;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  backdrop-filter: blur(10px) saturate(120%);
  box-shadow: var(--shadow-lg);
}
.qform {
  display: grid;
  gap: 16px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field label {
  display: block;
  font-weight: 500;
  font-size: 13.5px;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.72);
}
.field__opt {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
}
.field input,
.field textarea {
  width: 100%;
  font: inherit;
  font-size: 15px;
  color: #fff;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease),
    background 0.15s var(--ease);
}
.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.34);
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(243, 146, 0, 0.18);
  background: rgba(255, 255, 255, 0.08);
}
.field textarea {
  resize: vertical;
  min-height: 122px;
}
.field--invalid input,
.field--invalid textarea {
  border-color: #ff6b6b;
  background: rgba(255, 107, 107, 0.08);
}
.field__error {
  color: #ff8a8a;
  font-size: 13px;
  margin-top: 6px;
}
.field--check {
  margin-top: 2px;
}
.checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 400;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.62);
  cursor: pointer;
}
.checkbox a {
  color: var(--orange-lt);
}
.checkbox input {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: var(--orange);
  flex: none;
}
/* bouton d'envoi : plein, blanc → orange au survol */
.qform__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  margin-top: 6px;
  padding: 17px 24px;
  border: 0;
  border-radius: 14px;
  cursor: pointer;
  background: #fff;
  color: var(--blue-deep);
  font: inherit;
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.16s var(--ease), box-shadow 0.2s var(--ease),
    background 0.2s var(--ease), color 0.2s var(--ease);
}
.qform__submit:hover {
  transform: translateY(-2px);
  background: var(--orange);
  color: #fff;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.4);
}
.qform__submit-ic {
  display: grid;
  place-items: center;
}
.qform__submit-ic .ic {
  width: 20px;
  height: 20px;
  transition: transform 0.2s var(--ease);
}
.qform__submit:hover .qform__submit-ic .ic {
  transform: translateX(4px);
}
.form__note {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}
.form__success,
.form__failure {
  margin-top: 2px;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 14.5px;
}
.form__success {
  background: rgba(46, 160, 90, 0.16);
  border: 1px solid rgba(46, 160, 90, 0.42);
  color: #b8f0cd;
}
.form__failure {
  background: rgba(214, 69, 69, 0.16);
  border: 1px solid rgba(214, 69, 69, 0.42);
  color: #ffc3c3;
}
.form__success a,
.form__failure a {
  color: #fff;
}
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.82);
  padding-top: 76px;
  background: radial-gradient(
      55% 80% at 12% 0%,
      rgba(46, 123, 214, 0.22),
      transparent 60%
    ),
    radial-gradient(
      45% 70% at 90% 6%,
      rgba(243, 146, 0, 0.12),
      transparent 60%
    ),
    linear-gradient(180deg, #0b2c55 0%, #071a33 100%);
}
/* wave de transition (au-dessus du footer) */
.footer__wave {
  position: absolute;
  left: 0;
  bottom: 100%;
  width: 100%;
  height: 84px;
  line-height: 0;
  pointer-events: none;
}
.footer__wave svg {
  width: 100%;
  height: 100%;
  display: block;
}
.footer__wave-back {
  fill: #0f3564;
}
.footer__wave-front {
  fill: #0b2c55;
}
.footer__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 44px;
  padding-bottom: 48px;
}
/* puces garanties sous le logo */
.footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.footer__badges li {
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  padding: 6px 13px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.footer__logo {
  height: 78px;
  width: auto;
}
.footer__brand p {
  margin-top: 16px;
  max-width: 40ch;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}
.footer__col h4 {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer__col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 26px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}
.footer__col ul {
  display: grid;
  gap: 12px;
}
.footer__col a,
.footer__col li {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  transition: color 0.18s var(--ease);
}
.footer__col a:hover {
  color: #fff;
}

/* colonne contact */
.footer__addr {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  margin-bottom: 16px;
}
.footer__hl {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--orange-lt);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 12px;
}
.footer__hl:hover {
  color: #fff;
}
.footer__hl .ic {
  flex: none;
  width: 18px;
  height: 18px;
  color: var(--orange);
}

/* barre basse (sombre, cohérente avec le footer) */
.footer__bottom {
  position: relative;
  background: rgba(0, 0, 0, 0.22);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0;
}
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px 30px;
  flex-wrap: wrap;
}
.footer__legal-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.footer__legal-links a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 600;
}
.footer__legal-links a:hover {
  color: var(--orange-lt);
}
.footer__legal-links span {
  color: rgba(255, 255, 255, 0.4);
}
.footer__legal p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 6px;
}
.footer__end {
  display: flex;
  align-items: center;
  gap: 22px;
}
.footer__social {
  display: flex;
  gap: 10px;
}
.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: grid;
  place-items: center;
  transition: background 0.2s var(--ease), transform 0.16s var(--ease);
}
.footer__social a:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}
.footer__social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.footer__top {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
  font-size: 14px;
}
.footer__top:hover {
  color: #fff;
}
.footer__top-ic {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  display: grid;
  place-items: center;
  color: var(--orange-lt);
  transition: border-color 0.2s var(--ease), transform 0.16s var(--ease),
    background 0.2s var(--ease);
}
.footer__top:hover .footer__top-ic {
  border-color: var(--orange);
  background: rgba(243, 146, 0, 0.15);
  transform: translateY(-3px);
}
.footer__top-ic .ic {
  width: 16px;
  height: 16px;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 940px) {
  .nav__inner {
    display: flex;
  }
  .nav__links,
  .nav__actions {
    display: none;
  }
  .nav__burger {
    display: flex;
  }
  .nav__mobile[hidden] {
    display: none;
  }
  .nav__mobile {
    pointer-events: auto;
    display: grid;
    gap: 4px;
    margin-top: 10px;
    padding: 14px 22px 20px;
    background: rgba(13, 45, 86, 0.9);
    backdrop-filter: saturate(160%) blur(14px);
    -webkit-backdrop-filter: saturate(160%) blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 24px;
    box-shadow: 0 16px 44px rgba(11, 30, 60, 0.35);
  }
  .nav__mobile a {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 500;
    padding: 13px 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .nav__mobile a:last-child {
    border: 0;
    margin-top: 10px;
  }
  .nav__mobile .btn {
    color: #fff;
  }

  .media {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .media--reverse .media__figure {
    order: 0;
  }
  .offer-cards {
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: 440px;
    margin-inline: auto;
  }
  .offer-arrow {
    width: 52px;
    transform: rotate(90deg);
    justify-self: center;
    margin: 2px 0;
  }
  .howx {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .howx__figure {
    order: -1;
    max-width: 360px;
  }
  .about {
    padding: 76px 0 68px;
  }
  .about__lead {
    max-width: none;
  }
  .about__cards {
    grid-template-columns: 1fr 1fr;
  }
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact__watermark {
    top: -48px;
  }
  .footer__wave {
    height: 58px;
  }
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }
  .footer__brand {
    grid-column: 1 / -1;
  }
  .footer__bottom-inner {
    justify-content: center;
    text-align: center;
  }
  .footer__legal {
    width: 100%;
  }
  .footer__legal-links {
    justify-content: center;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }
  .whoc__inner .section__title br {
    display: none;
  }
  .section {
    padding: 66px 0;
  }
  .hero__inner {
    padding-top: 118px;
  }
  .hero__wave svg {
    height: 48px;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
  .hero__cta .btn {
    flex: 1 1 auto;
  }
  .media__badge {
    left: 12px;
    right: 12px;
    bottom: -16px;
    max-width: none;
  }
  .media__badge--accent {
    left: 12px;
    right: 12px;
  }
  .about__cards {
    grid-template-columns: 1fr;
  }
  .about__lead {
    padding: 26px 22px;
  }
  .contact__panel {
    padding: 24px 20px;
  }
  .footer__inner {
    grid-template-columns: 1fr;
  }
}

/* bande de garanties : 2 colonnes (tablette) puis 1 colonne (mobile) */
@media (max-width: 780px) {
  :root {
    --trustbar-h: 173px;
  }
  .trustbar__inner {
    grid-template-columns: 1fr 1fr;
  }
  .trustbar__item {
    padding: 20px 18px;
    font-size: 14.5px;
  }
  .trustbar__item + .trustbar__item {
    border-left: 0;
  }
  .trustbar__item:nth-child(even) {
    border-left: 1px solid var(--line);
  }
  .trustbar__item:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }
}
@media (max-width: 460px) {
  :root {
    --trustbar-h: 320px;
  }
  .trustbar__inner {
    grid-template-columns: 1fr;
  }
  .trustbar__item {
    padding: 16px 6px;
  }
  .trustbar__item + .trustbar__item {
    border-left: 0 !important;
    border-top: 1px solid var(--line);
  }
  .trustbar__label br {
    display: none;
  }
}

/* ============================================================
   Pages légales
   ============================================================ */
.legal {
  padding: 130px 0 84px;
}
.legal__back {
  display: inline-block;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 15px;
}
.legal h1 {
  font-size: clamp(1.7rem, 3.4vw, 2.2rem);
  margin-bottom: 8px;
}
.legal__updated {
  color: var(--ink-soft);
  font-size: 14px;
  margin-bottom: 36px;
}
.legal h2 {
  font-size: 1.2rem;
  margin: 34px 0 12px;
  color: var(--blue);
}
.legal p {
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.legal strong {
  color: var(--ink);
}
.legal__list {
  list-style: disc;
  padding-left: 22px;
  margin: 0 0 16px;
  color: var(--ink-soft);
}
.legal__list li {
  margin-bottom: 6px;
}
.legal-page .nav {
  position: fixed;
}
