/* ===================== TOKENS ===================== */
:root {
  --navy: #0A2353;
  --navy-deep: #071A40;
  --ink: #272E3B;
  /* CTA foncé */
  --blue: #2569ED;
  --orange: #EB5F2B;
  --yellow: #FADF54;
  --green: #7BBA7E;
  --muted: #5B6B8C;
  /* texte courant */
  --muted-2: #AEBAD6;
  /* texte clair sur foncé */
  --bg-soft: #F5F7FC;
  --line: #D7DEEC;
  --white: #FFFFFF;
  --grad: linear-gradient(186deg, #FADF54 28%, #EB5F2B 105%);
  --grad-cta: linear-gradient(188deg, #EB5F2B 15%, #FADF54 90%);
  --grad-pct: linear-gradient(198deg, #EB5F2B 15%, #FADF54 90%);
  --hero-img: url("https://www.figma.com/api/mcp/asset/6dd44ffb-1f46-4808-b973-3e6f88837a74");
  --ease: cubic-bezier(.22, .61, .36, 1);
  --header-h: 90px;
  /* hauteur du header sticky */
}

/* ===================== RESET ===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  font-family: "Montserrat", "Arial", sans-serif;
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none
}

a {
  text-decoration: none;
  color: inherit
}

p {
  margin: 0
}

.wrap {
  width: 1080px;
  max-width: calc(100% - 80px);
  margin: 0 auto
}

/* ===================== ICONS ===================== */
.icon {
  width: 100%;
  height: 100%;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round
}

svg use,
svg [stroke] {
  vector-effect: non-scaling-stroke
}

.qcard .ic svg,
.dcard .ic svg,
.mission .mic svg,
.arr svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round
}

/* ===================== HEADER ===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  transition: box-shadow .3s ease;
}

.site-header.scrolled {
  box-shadow: 0 6px 24px rgba(10, 35, 83, .06)
}

.header-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0;
}

/* brand / logo */
.brand {
  display: flex;
  align-items: center;
  gap: 7px
}

.brand-logo {
  height: 38px;
  width: auto;
  color: var(--navy);
  flex: none;
  display: block
}

.brand-logo .logo-dot {
  fill: var(--blue)
}

.nav {
  display: flex;
  align-items: center;
  gap: 36px
}

.nav a {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--muted);
  white-space: nowrap;
  transition: color .2s ease;
}


/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  white-space: nowrap;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  transition: transform .25s var(--ease), box-shadow .25s ease, background .25s ease;
}

.btn:hover {
  transform: translateY(-2px)
}

.btn-dark {
  background: var(--ink);
  color: #fff;
  padding: 15px 30px;
  font-size: 16px;
  box-shadow: 0 8px 22px rgba(39, 46, 59, .18)
}

.btn-dark:hover {
  box-shadow: 0 14px 30px rgba(39, 46, 59, .26)
}

.btn-ghost {
  background: #fff;
  color: var(--navy);
  padding: 15px 30px;
  font-size: 16px;
  border: 1.5px solid var(--line)
}

.btn-ghost:hover {
  border-color: #c2cce0;
  box-shadow: 0 10px 24px rgba(10, 35, 83, .06)
}

.btn-grad {
  background: var(--grad-cta);
  color: #fff;
  padding: 16px 32px;
  font-size: 16px;
  box-shadow: 0 12px 30px rgba(235, 95, 43, .34)
}

.btn-grad:hover {
  box-shadow: 0 16px 38px rgba(235, 95, 43, .42)
}

.btn-line-light {
  background: rgba(255, 255, 255, .08);
  color: #fff;
  padding: 16px 32px;
  font-size: 16px;
  border: 1.5px solid rgba(255, 255, 255, .34)
}

.btn-line-light:hover {
  background: rgba(255, 255, 255, .14)
}

/* ===================== HERO ===================== */
.hero {
  background: var(--bg-soft);
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100svh - var(--header-h));
  padding: 56px 0;
}

.hero-row {
  display: flex;
  gap: 72px;
  align-items: center;
  width: 1080px;
  max-width: calc(100% - 80px);
  margin: 0 auto
}

.hero-left {
  flex: 1 1 0;
  min-width: 0
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: 100px;
}

.eyebrow .ribbon {
  width: 24px;
  height: 24px;
  flex: none
}

.eyebrow span {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: .75px;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero h1 {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 56px;
  line-height: 62px;
  letter-spacing: -.56px;
  color: var(--navy);
  margin-top: 24px;
}

.hero-sub {
  margin-top: 24px;
  color: var(--muted);
  font-size: 18px;
  line-height: 30px
}

.hero-sub p+p {
  margin-top: 18px
}

.hero-ctas {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 38px;
  flex-wrap: wrap
}

.hero-illu {
  width: 468px;
  flex: none;
  height: 627px;
  height: min(627px, calc(100svh - var(--header-h) - 112px));
  border-radius: 28px 0 0 28px;
  background-color: #dfe7f5;
  background-image: var(--hero-img);
  background-size: cover;
  background-position: center;
  box-shadow: 0 30px 60px rgba(10, 35, 83, .12);
}

/* ===================== SECTION GENERIC ===================== */
.section {
  padding: 108px 0
}

.bg-white {
  background: #fff
}

.bg-soft {
  background: var(--bg-soft)
}

.bg-navy {
  background: var(--navy)
}

.head {
  margin: 0 auto;
  text-align: center
}

.head h2 {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: -.2px;
  color: var(--navy);
}

.head .lead {
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 28px
}

.bg-navy .head h2 {
  color: #fff
}

.bg-navy .head .lead {
  color: var(--muted-2)
}

/* ===================== CRÉDIBILITÉ ===================== */
.dims {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  width: 940px;
  max-width: 100%;
  margin: 46px auto 0
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--bg-soft);
  border: 1.2px solid var(--line);
  padding: 11px 20px 11px 18px;
  border-radius: 100px;
  transition: transform .25s var(--ease), border-color .25s ease;
}

.chip .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  flex: none
}

.chip span {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--navy);
  white-space: nowrap
}

.note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.2px solid var(--line);
  padding: 13px 22px;
  border-radius: 100px;
  margin: 28px auto 0;
  font-size: 14.5px;
  white-space: nowrap;
}

.note .nlabel {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  color: var(--muted)
}

.note .nlink {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--blue)
}

.cw {
  width: 840px;
  max-width: 100%;
  margin: 44px auto 0;
  text-align: center
}

.cw p {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 32px;
  color: var(--navy)
}

/* ===================== STEPS (Comment ça marche) ===================== */
.steps {
  display: flex;
  gap: 22px;
  width: 1080px;
  max-width: 100%;
  margin: 56px auto 0;
  align-items: stretch
}

.step {
  flex: 1 1 0;
  min-width: 0;
  background: #fff;
  border: 1.2px solid var(--line);
  padding: 30px 28px;
  border-radius: 22px;
  box-shadow: 0 12px 28px rgba(10, 35, 83, .05);
  transition: transform .3s var(--ease), box-shadow .3s ease;
}

.step .num {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 18px;
}

.num-green {
  background: rgba(123, 186, 126, .12);
  color: var(--green)
}

.num-blue {
  background: rgba(37, 105, 237, .12);
  color: var(--blue)
}

.num-grad {
  background: linear-gradient(232deg, rgba(250, 223, 84, .12) 28%, rgba(235, 95, 43, .12) 100%)
}

.num-grad span {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.step h3 {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 19px;
  line-height: 25px;
  color: var(--navy);
  margin-top: 22px
}

.step p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 23px;
  margin-top: 10px
}

/* ===================== RÉMUNÉRATION ===================== */
.rem-head {
  width: 800px;
  max-width: 100%;
}

.rem-head h2 {
  width: 544px;
  max-width: 100%;
  margin: 0 auto
}

.rem-card {
  display: flex;
  gap: 56px;
  align-items: center;
  background: #fff;
  border-radius: 30px;
  padding: 52px 56px;
  margin-top: 52px;
  box-shadow: 0 18px 44px rgba(235, 95, 43, .12), 0 30px 70px rgba(10, 35, 83, .3);
}

.rem-left {
  flex: 1 1 0;
  min-width: 0
}

.rem-label {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .72px;
  color: var(--blue)
}

.rem-big {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 64px;
  line-height: 66px;
  letter-spacing: -.64px;
  color: var(--orange);
  margin-top: 16px
}

.rem-desc {
  color: var(--muted);
  font-size: 16px;
  line-height: 25px;
  margin-top: 6px
}

.rem-list {
  margin-top: 30px
}

.rem-item {
  display: flex;
  gap: 12px;
  align-items: center
}

.rem-item+.rem-item {
  margin-top: 14px
}

.rem-item .ck {
  width: 24px;
  height: 24px;
  flex: none
}

.rem-item p {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 15.5px;
  line-height: 22px;
  color: var(--navy)
}

.rem-cta {
  margin-top: 30px;
  align-self: flex-start
}

/* flow */
.flow {
  width: 392px;
  flex: none;
  background: var(--bg-soft);
  border-radius: 22px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center
}

.fbox {
  width: 100%;
  background: #fff;
  border: 1.2px solid var(--line);
  border-radius: 14px;
  padding: 16px 20px;
  text-align: center
}

.fbox .t1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 15.5px;
  color: var(--navy)
}

.fbox .big {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: var(--navy)
}

.fbox .small {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 3px
}

.arr {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 10px 0
}

.arr svg {
  width: 22px;
  height: 22px;
  color: var(--blue)
}

.flabel {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: .69px;
  color: var(--muted);
  text-align: center
}

.zone-pct {
  width: 100%;
  border-radius: 16px;
  padding: 18px;
  text-align: center;
  color: #fff;
  background: var(--grad-pct);
  box-shadow: 0 10px 22px rgba(235, 95, 43, .3)
}

.zone-pct .big {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 38px;
  letter-spacing: -.19px
}

.zone-pct .small {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 12px;
  margin-top: 2px
}

.res {
  width: 100%;
  background: var(--navy);
  border-radius: 14px;
  padding: 18px;
  text-align: center
}

.res .big {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 30px;
  letter-spacing: -.15px;
  color: #fff
}

.res .small {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 12.5px;
  color: var(--muted-2);
  margin-top: 3px
}

/* CA slider */
.ca-slider {
  margin-top: 14px
}

.ca-slider input[type=range] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  cursor: pointer;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange) var(--pct, 11%), var(--line) var(--pct, 11%), var(--line) 100%);
}

.ca-slider input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--orange);
  border: 3px solid #fff;
  box-shadow: 0 3px 8px rgba(235, 95, 43, .45);
  cursor: pointer;
}

.ca-slider input[type=range]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--orange);
  border: 3px solid #fff;
  box-shadow: 0 3px 8px rgba(235, 95, 43, .45);
  cursor: pointer;
}

.ca-slider input[type=range]:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px
}

.ca-range-legend {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 11px;
  color: var(--muted)
}

/* ===================== POUR QUI ===================== */
.grid-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 1080px;
  max-width: 100%;
  margin: 54px auto 0;
  justify-content: flex-start
}

.qcard {
  width: 344px;
  background: #fff;
  border: 1.2px solid var(--line);
  padding: 34px 32px;
  border-radius: 22px;
  box-shadow: 0 12px 28px rgba(10, 35, 83, .05);
  transition: transform .3s var(--ease), box-shadow .3s ease;
}

.qcard .ic {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue)
}

.qcard .ic svg {
  width: 28px;
  height: 28px
}

.qcard h3 {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 19px;
  line-height: 25px;
  color: var(--navy);
  margin-top: 22px
}

.qcard p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 23px;
  margin-top: 10px
}

/* ===================== DIFFÉRENCE ===================== */
.diff-cards {
  display: flex;
  gap: 24px;
  width: 1080px;
  max-width: 100%;
  margin: 56px auto 0;
  align-items: stretch
}

.dcard {
  flex: 1 1 0;
  min-width: 0;
  background: #fff;
  border: 1.2px solid var(--line);
  padding: 38px 34px;
  border-radius: 24px;
  box-shadow: 0 16px 34px rgba(10, 35, 83, .06);
  transition: transform .3s var(--ease), box-shadow .3s ease;
}

.dcard .ic {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center
}

.dcard .ic svg {
  width: 32px;
  height: 32px
}

.ic-orange {
  background: rgba(235, 95, 43, .12);
  color: var(--orange)
}

.ic-blue {
  background: rgba(37, 105, 237, .12);
  color: var(--blue)
}

.ic-green {
  background: rgba(123, 186, 126, .12);
  color: var(--green)
}

.dcard h3 {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 23px;
  line-height: 29px;
  letter-spacing: -.069px;
  color: var(--navy);
  margin-top: 26px
}

.dcard p {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 25px;
  margin-top: 14px
}

.dcard p+p {
  margin-top: 0
}

/* ===================== MISSIONS ===================== */
.missions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  width: 1080px;
  max-width: 100%;
  margin: 50px auto 0;
  justify-content: center
}

.mission {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1.2px solid var(--line);
  padding: 15px 24px 15px 18px;
  border-radius: 100px;
  box-shadow: 0 8px 18px rgba(10, 35, 83, .04);
  transition: transform .25s var(--ease), box-shadow .25s ease;
}

.mission .mic {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none
}

.mission .mic svg {
  width: 19px;
  height: 19px
}

.mission span {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 15.5px;
  color: var(--navy);
  white-space: nowrap
}

/* ===================== FAQ ===================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 860px;
  max-width: 100%;
  margin: 50px auto 0
}

.faq {
  background: #fff;
  border: 1.2px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(10, 35, 83, .04);
  overflow: hidden
}

.faq-q {
  width: 100%;
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 26px 30px;
  text-align: left
}

.faq-q .qt {
  flex: 1 1 0;
  min-width: 0;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 25px;
  color: var(--navy)
}

.faq-pm {
  width: 30px;
  height: 30px;
  flex: none;
  border-radius: 50%;
  background: var(--bg-soft);
  border: 1.2px solid var(--line);
  position: relative;
  transition: background .25s ease, border-color .25s ease
}

.faq-pm::before,
.faq-pm::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--blue);
  border-radius: 2px;
  transition: background .25s ease, transform .25s ease, opacity .25s ease
}

.faq-pm::before {
  width: 12px;
  height: 2px;
  transform: translate(-50%, -50%)
}

.faq-pm::after {
  width: 2px;
  height: 12px;
  transform: translate(-50%, -50%)
}

.faq.open .faq-pm {
  background: var(--blue);
  border-color: var(--blue)
}

.faq.open .faq-pm::before,
.faq.open .faq-pm::after {
  background: #fff
}

.faq.open .faq-pm::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg)
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease)
}

.faq-a-in {
  padding: 0 30px 26px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 25px
}

.faq.open .faq-a {
  max-height: 340px
}

/* ===================== SECTION FINALE ===================== */
.final {
  padding: 118px 0
}

.cta-card {
  position: relative;
  overflow: hidden;
  background: var(--navy-deep);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 32px;
  padding: 64px 80px;
  text-align: center;
  box-shadow: 0 30px 70px rgba(10, 35, 83, .4);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-glow {
  position: absolute;
  top: -90px;
  left: 50%;
  transform: translateX(-50%);
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 105, 237, .55) 0%, rgba(37, 105, 237, 0) 70%);
  opacity: .2;
  pointer-events: none
}

.cta-card h2 {
  position: relative;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 42px;
  line-height: 52px;
  letter-spacing: -.21px;
  color: #fff;
  width: 720px;
  max-width: 100%;
  margin-top: 26px
}

.cta-card .sw {
  position: relative;
  width: 620px;
  max-width: 100%;
  color: var(--muted-2);
  font-size: 17px;
  line-height: 28px;
  margin-top: 20px
}

.cta-actions {
  position: relative;
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 38px;
  flex-wrap: wrap;
  justify-content: center
}

/* ===================== FOOTER ===================== */
.footer {
  background: var(--navy-deep);
  padding: 48px 0
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.footer .brand-logo {
  color: #fff;
  height: 46px
}

.flinks {
  display: flex;
  gap: 30px;
  align-items: center
}

.flinks a {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 13.5px;
  color: var(--muted-2);
  white-space: nowrap;
  transition: color .2s ease
}


.footdiv {
  height: 1px;
  width: 100%;
  background: rgba(255, 255, 255, .1);
  margin: 36px 0 0
}

.copy {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 22px
}

/* ===================== SCROLL ANIMATIONS ===================== */
[data-animate] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s var(--ease), transform .6s var(--ease)
}

[data-animate].in-view {
  opacity: 1;
  transform: none
}

@media (prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto
  }

  * {
    transition: none !important;
    animation: none !important
  }

  [data-animate] {
    opacity: 1;
    transform: none
  }
}

/* ===================== RESPONSIVE (graceful) ===================== */
@media (max-width:1120px) {
  .hero-row {
    flex-direction: column;
    align-items: flex-start
  }

  .hero-illu {
    width: 100%;
    height: 420px;
    border-radius: 24px
  }

  .steps,
  .diff-cards {
    flex-wrap: wrap
  }

  .step,
  .dcard {
    flex: 1 1 280px
  }

  .rem-card {
    flex-direction: column;
    align-items: stretch
  }

  .flow {
    width: 100%
  }

  .qcard {
    width: calc(50% - 12px)
  }
}

@media (max-width:720px) {
  :root {
    --header-h: 74px
  }

  .nav {
    display: none
  }

  .header-in {
    padding: 18px 0
  }

  .hero {
    padding: 40px 0 56px
  }

  .hero h1 {
    font-size: 38px;
    line-height: 44px
  }

  .section,
  .final {
    padding: 64px 0
  }

  .head h2,
  .cta-card h2 {
    font-size: 30px;
    line-height: 38px;
    width: 100%
  }

  .rem-head h2 {
    width: 100%
  }

  .rem-big {
    font-size: 52px;
    line-height: 54px
  }

  .rem-card {
    padding: 32px 24px
  }

  .rem-cta{
    justify-self: center;
    display: block;
  }

  .cta-card {
    padding: 44px 26px
  }

  .qcard {
    width: 100%
  }

  .chip span:not(.dot){
    white-space: initial;
    text-align: center;
  }

  .cta-actions{
    max-width: 100%;
  }
  .cta-actions .btn-grad{
    white-space: initial;
  }

  .note{
    flex-direction: column;
    gap: 10px;
    white-space: initial;
    border-radius: 15px;
  }

  .footer-top{
    flex-direction: column;
    gap: 40px;
  }
  .footer-top .flinks{
    flex-direction: column;
    gap: 20px;
  }
  .copy{
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}

/* ===================== MODALE PARTENAIRE ===================== */
.pm-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(7, 26, 64, .55);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity .25s ease;
}

.pm-overlay[hidden] {
  display: none;
}

.pm-overlay.pm-open {
  opacity: 1;
}

.pm-dialog {
  position: relative;
  width: 100%;
  max-width: 460px;
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 30px 80px rgba(10, 35, 83, .28);
  transform: translateY(16px) scale(.98);
  transition: transform .3s var(--ease);
}

.pm-overlay.pm-open .pm-dialog {
  transform: translateY(0) scale(1);
}

.pm-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--muted);
  transition: background .2s ease, color .2s ease;
}

.pm-close:hover {
  background: var(--bg-soft);
  color: var(--navy);
}

.pm-close svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.pm-title {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 26px;
  color: var(--navy);
  margin-bottom: 8px;
}

.pm-desc {
  font-size: 15px;
  line-height: 1.5;
  color: var(--muted);
  margin-bottom: 24px;
}

.pm-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pm-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pm-field label {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.pm-field input {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  color: var(--navy);
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.pm-field input::placeholder {
  color: #aab4cc;
}

.pm-field input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37, 105, 237, .14);
}

.pm-field.pm-invalid input {
  border-color: var(--orange);
}

.pm-field.pm-invalid input:focus {
  box-shadow: 0 0 0 3px rgba(235, 95, 43, .16);
}

.pm-err {
  font-size: 13px;
  color: var(--orange);
  min-height: 0;
}

.pm-status {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

.pm-status.pm-status-err {
  color: var(--orange);
}

.pm-status[hidden] {
  display: none;
}

.pm-submit {
  width: 100%;
  margin-top: 4px;
}

.pm-submit[disabled] {
  opacity: .6;
  cursor: not-allowed;
  transform: none;
}

@media (max-width:560px) {
  .pm-dialog {
    padding: 32px 24px;
    border-radius: 20px;
  }

  .pm-title {
    font-size: 23px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .pm-overlay,
  .pm-dialog {
    transition: none;
  }
}