/* ═══════════════════════════════════════════
   VARIABLES & RESET
═══════════════════════════════════════════ */
:root {
  --navy: #03153a;
  --blue-dark: #0b2550;
  --blue-mid: #1249a3;
  --blue: #1d6af5;
  --blue-light: #4a8dff;
  --blue-pale: #ebf2ff;
  --blue-xpale: #f4f7ff;
  --gold: #e8a020;
  --white: #ffffff;
  --black: #0a0f1e;
  --gray-900: #111827;
  --gray-700: #374151;
  --gray-500: #6b7280;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --shadow-sm: 0 2px 8px rgba(18, 73, 163, 0.08);
  --shadow-md: 0 8px 32px rgba(18, 73, 163, 0.12);
  --shadow-lg: 0 20px 60px rgba(18, 73, 163, 0.18);
  --radius: 14px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: "Agency FB", sans-serif;
  background: var(--white);
  color: var(--gray-900);
  overflow-x: hidden;
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
}
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: var(--gray-100);
}
::-webkit-scrollbar-thumb {
  background: var(--blue);
  border-radius: 4px;
}

/* ═══════════════════════════════════════════
   TYPOGRAPHY 
═══════════════════════════════════════════ */
h1,
h2,
h3 {
  font-family: "Agency FB", serif;
  line-height: 1.1;
}
h1 {
  font-size: clamp(2.6rem, 3vw, 4.8rem);
  font-weight: normal;
  letter-spacing: -1.5px;
}
h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.5px;
}
h3 {
  font-size: 1.2rem;
  font-weight: 700;
}
p {
  line-height: 1.55;
  color: var(--gray-700);
}

li {
  line-height: 1.45;
}

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(18, 73, 163, 0.08);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 70px;
}
.logo {
  font-family: "Agency FB", serif;
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.5px;
}
.logo span {
  color: var(--blue);
}
.logo sub {
  font-size: 0.6rem;
  color: var(--gray-500);
  font-family: "Agency FB", sans-serif;
  vertical-align: bottom;
  margin-left: 2px;
  font-weight: 400;
}
.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  padding: 8px 18px;
  border-radius: 8px;
  color: var(--gray-700);
  font-size: 0.875rem;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
  background: var(--blue-pale);
}
.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}
.nav-cta {
  background: var(--blue) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 16px rgba(29, 106, 245, 0.3);
  transition: var(--transition) !important;
}
.nav-cta:hover {
  background: var(--blue-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(29, 106, 245, 0.4) !important;
}
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}

/* ═══════════════════════════════════════════
   PAGE SYSTEM
═══════════════════════════════════════════ */
.page {
  display: none;
  animation: pageFadeIn 0.5s ease both;
}
.page.active {
  display: block;
}

/* ═══════════════════════════════════════════
   PAGE À PROPOS - REVUE PDF
═══════════════════════════════════════════ */
.about-hero {
  align-items: center;
  background:
    linear-gradient(
      90deg,
      rgba(23, 22, 25, 0.9) 0%,
      rgba(23, 22, 25, 0.73) 48%,
      rgba(23, 22, 25, 0.3) 100%
    ),
    url("posture.jpg") center 42% / cover no-repeat;
  color: var(--white);
  display: flex;
  min-height: clamp(360px, 48vw, 530px);
  padding: 150px 48px 78px;
  position: relative;
}

.about-hero__content {
  margin: 0 auto;
  max-width: 980px;
  position: relative;
  width: 100%;
}

.about-hero__eyebrow {
  color: #f0c896;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.about-hero h1 {
  color: var(--white);
  font-family: inherit;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
  max-width: 680px;
}

.about-hero__content > p:last-child {
  color: #afcad0;
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.5;
  max-width: 620px;
}

.about-pdf {
  --about-sand: #f0c896;
  --about-mist: #afcad0;
  --about-ink: #171619;
  --about-line: #9dcbff;
  --about-warm-ink: #8a5f29;
  --about-cool-ink: #3f6f7c;
  background: var(--white);
  color: var(--about-ink);
  font-family: "Agency FB", sans-serif;
  padding: 58px 48px 104px;
}

.about-pdf__inner {
  margin: 0 auto;
  max-width: 980px;
}

.about-pdf__section {
  margin-top: 42px;
  text-align: justify;
}

.about-pdf__section:first-child {
  margin-top: 0;
}

.about-pdf__section h2 {
  color: var(--blue-dark);
  font-family: inherit;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

#about-intro-title,
#about-framework-title,
#about-references-title,
#about-distinction-title,
#about-network-title,
#about-method-title,
#about-expertise-title,
#about-maturity-title,
#about-choice-title,
#about-values-title {
  color: rgb(235, 79, 79);
}

.about-pdf__section h2.about-pdf__subheading {
  color: #151515;
}

.about-pdf p,
.about-pdf li {
  color: #000;
  font-size: 0.98rem;
  line-height: 1.62;
}

.about-pdf p + p {
  margin-top: 15px;
}

.about-pdf strong {
  font-weight: 700;
}

.about-pdf__highlight {
  color: #e83f39;
}

.about-pdf__section .ul_left {
  padding-left: 30px;
}

.about-pdf__section .ul_left li {
  line-height: 1.2rem;
}

.about-pdf__section .ul_left li + li {
  margin-top: 16px;
}

.about-pdf__list,
.about-pdf__reference,
.about-pdf__accent-copy {
  border-left: 2px solid var(--about-line);
  padding-left: 24px;
}

#about-objectives {
  font-size: 0.98rem;
  line-height: 1.5;
  margin-bottom: 8px;
}

.about-pdf__list {
  margin: 0;
  padding-right: 4px;
}

.about-pdf__expertise-layout {
  align-items: center;
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
}

.about-pdf__expertise-copy {
  min-width: 0;
}

.about-pdf__expertise-layout .what-visual {
  height: 360px;
}

.about-pdf__list li {
  margin-left: 19px;
  padding-left: 4px;
}

.about-pdf__list--check {
  list-style: none;
}

.about-pdf__list--check li {
  margin-left: 0;
  padding-left: 28px;
  position: relative;
}

.about-pdf__list--check li::before {
  content: "✓";
  font-size: 1.1rem;
  font-weight: 700;
  left: 0;
  line-height: 1.45;
  position: absolute;
  top: 0;
}

.about-pdf__conviction {
  border: 1px solid #171717;
  padding: 20px 22px 18px;
}

.about-pdf__conviction:hover {
  transform: translateY(-2px);
  border-color: var(--about-sand);
  box-shadow: 0 4px 12px rgba(23, 22, 25, 0.2);
}

.about-pdf__conviction h2 {
  margin-bottom: 14px;
}

.about-pdf__conviction p {
  margin-bottom: 13px;
}

.about-pdf__conviction ul {
  padding-left: 30px;
}

.about-pdf__conviction li {
  margin-bottom: 4px;
  padding-left: 4px;
}

.about-pdf__reference-grid {
  display: grid;
  gap: 30px 42px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-pdf__reference {
  min-height: 100%;
  padding-bottom: 2px;
}

.about-pdf__reference h3,
.about-pdf__value-card h3,
.about-pdf__maturity-card h3 {
  color: #151515;
  font-family: inherit;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 10px;
}

.about-pdf__reference ul {
  padding-left: 18px;
}

.about-pdf__reference li {
  margin-bottom: 3px;
  padding-left: 4px;
}

.about-pdf__accent-copy {
  padding-bottom: 1px;
}

.about-pdf__button {
  align-items: center;
  color: #009de1;
  display: inline-flex;
  font-size: 0.98rem;
  font-weight: 700;
  gap: 7px;
  margin-top: 16px;
  transition: color 0.2s ease;
}

.about-pdf__button:hover,
.about-pdf__button:focus-visible {
  color: var(--blue-mid);
}

.about-pdf__button:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
}

body.about-fiche-modal-open {
  overflow: hidden;
}

.about-fiche-modal {
  align-items: center;
  background: rgba(3, 21, 58, 0.72);
  display: none;
  inset: 0;
  justify-content: center;
  padding: 24px;
  position: fixed;
  z-index: 1600;
}

.about-fiche-modal.is-visible {
  display: flex;
}

.about-fiche-modal__content {
  background: var(--white);
  border-top: 4px solid var(--blue, #1064f5);
  box-shadow: 0 20px 60px rgba(3, 21, 58, 0.3);
  max-height: calc(100vh - 48px);
  max-width: 640px;
  overflow-y: auto;
  padding: 34px;
  position: relative;
  width: 100%;
}

.about-fiche-modal__close {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--gray-700);
  cursor: pointer;
  display: inline-flex;
  font-family: Arial, sans-serif;
  font-size: 1.8rem;
  height: 36px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: 14px;
  top: 12px;
  width: 36px;
}

.about-fiche-modal__close:hover,
.about-fiche-modal__close:focus-visible {
  color: var(--blue-dark, #0c5fef);
}

.about-fiche-modal__close:focus-visible,
.about-fiche-modal__submit:focus-visible,
.about-fiche-modal__field input:focus-visible {
  outline: 3px solid rgba(29, 106, 245, 0.32);
  outline-offset: 2px;
}

.about-fiche-modal__eyebrow {
  color: var(--blue, #0f72ec);
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.about-fiche-modal h2 {
  color: var(--navy);
  font-family: inherit;
  font-size: 1.65rem;
  margin: 0 42px 10px 0;
}

.about-fiche-modal__intro {
  color: var(--gray-700);
  font-size: 0.94rem;
  margin-bottom: 26px;
}

.about-fiche-modal__grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-fiche-modal__field {
  display: grid;
  gap: 7px;
  margin-bottom: 16px;
}

.about-fiche-modal__field label {
  color: var(--gray-700);
  font-size: 0.84rem;
  font-weight: 700;
}

.about-fiche-modal__field label span:not([aria-hidden]) {
  color: var(--gray-500);
  font-size: 0.78rem;
  font-weight: 400;
}

.about-fiche-modal__field input {
  border: 1.5px solid var(--gray-200);
  border-radius: 6px;
  color: var(--gray-900);
  font-family: inherit;
  font-size: 1rem;
  min-height: 46px;
  padding: 10px 12px;
}

.about-fiche-modal__field input:focus {
  border-color: var(--blue);
}

.about-fiche-modal__hint,
.about-fiche-modal__status {
  font-size: 0.8rem;
  line-height: 1.4;
  margin: 0;
}

.about-fiche-modal__hint {
  color: var(--gray-500);
}

.about-fiche-modal__privacy {
  color: var(--gray-700);
  font-size: 0.8rem;
  line-height: 1.4;
  margin: 0 0 12px;
}

.about-fiche-modal__status {
  color: var(--blue, --blue-dark);
  min-height: 1.2em;
  margin-bottom: 12px;
}

.about-fiche-modal__honeypot {
  display: none;
}

.about-fiche-modal__submit {
  background: var(--blue);
  border: 0;
  border-radius: 6px;
  color: var(--white);
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  min-height: 50px;
  padding: 12px 18px;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
  width: 100%;
}

.about-fiche-modal__submit:hover:not(:disabled) {
  background: var(--blue-mid);
  transform: translateY(-1px);
}

.about-fiche-modal__submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.about-pdf__values {
  margin-top: 64px;
}

.about-pdf__values-heading {
  align-items: center;
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr auto 1fr;
  margin-bottom: 30px;
}

.about-pdf__values-heading span {
  background: var(--about-line);
  display: block;
  height: 1px;
}

.about-pdf__values-heading h2 {
  margin: 0;
  text-align: center;
}

.about-pdf__values-grid {
  display: grid;
  gap: 24px 48px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-pdf__value-card {
  border: 1px solid #171717;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 144px;
  padding: 22px 20px;
  text-align: center;
}

.about-pdf__value-card:hover {
  transform: translateY(-2px);
  border-color: var(--about-ink);
  box-shadow: 0 4px 12px rgba(23, 22, 25, 0.16);
}

.about-pdf__value-card h3 {
  margin-bottom: 12px;
}

.about-pdf__value-card p {
  font-size: 0.94rem;
  line-height: 1.5;
}

.about-pdf__maturity {
  margin-top: 58px;
}

.about-pdf__maturity-grid {
  display: grid;
  gap: clamp(20px, 3vw, 32px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 30px;
}

.about-pdf__maturity-card {
  border: 1px solid #171717;
  min-height: 100%;
  padding: clamp(5px, 2.5vw, 10px);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.about-pdf__maturity-card:hover {
  border-color: var(--about-ink);
  box-shadow: 0 6px 18px rgba(23, 22, 25, 0.14);
}

.about-pdf__maturity-level {
  display: block;
  grid-column: 1;
  margin: 0;
  text-align: left;
}

.about-pdf__maturity-heading {
  align-items: start;
  display: grid;
  gap: 8px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr) minmax(0, 1fr);
  margin-bottom: 16px;
}

.about-pdf__maturity-card h3 {
  grid-column: 2;
  margin: 0;
  min-width: 0;
  text-align: center;
  color: var(--blue-dark);
}

.about-pdf__maturity-card p {
  margin: 0;
}

.about-pdf__maturity-card em {
  color: #1d5db8;
  font-style: normal;
}

/* Couleurs réservées à quelques textes-clés, avec un contraste lisible. */
.about-pdf__highlight {
  color: rgb(235, 79, 79);
}

#about-objectives,
.about-pdf__accent-copy {
  color: var(--about-cool-ink);
}

.about-pdf__accent-copy strong {
  color: var(--blue-dark);
}

/* Fonds ciblés pour mettre en valeur les encadrés sans colorer toute la page. */
.about-pdf__conviction {
  background: #dbbe9cbf;
  border-color: var(--about-ink);
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(23, 22, 25, 0.16);
}

.about-pdf__conviction h2,
.about-pdf__conviction p,
.about-pdf__conviction li {
  color: var(--white);
}

.about-pdf__conviction:hover {
  box-shadow: 0 16px 34px rgba(23, 22, 25, 0.24);
}

.about-pdf__reference {
  background: #fff7ed;
  border: 1px solid rgba(138, 95, 41, 0.18);
  border-left: 4px solid var(--about-sand);
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(23, 22, 25, 0.06);
  padding: 22px 20px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.about-pdf__reference:nth-child(even) {
  background: #f0f7f8;
  border-color: rgba(63, 111, 124, 0.18);
  border-left-color: var(--about-mist);
}

.about-pdf__reference:hover {
  box-shadow: 0 10px 24px rgba(23, 22, 25, 0.1);
  transform: translateY(-3px);
}

.about-pdf__accent-copy {
  background: #f4fafb;
  border-radius: 12px;
  box-shadow: 0 5px 16px rgba(23, 22, 25, 0.05);
  padding: 18px 22px;
}

.about-pdf__value-card {
  background: hsl(35, 100%, 98%);
  border-color: rgba(138, 95, 41, 0.22);
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(23, 22, 25, 0.05);
}

.about-pdf__value-card:nth-child(even) {
  background: #f0f7f8;
  border-color: rgba(63, 111, 124, 0.22);
}

.about-pdf__maturity-card {
  background: #fffaf3;
  border-color: rgba(138, 95, 41, 0.2);
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(23, 22, 25, 0.05);
  padding: clamp(18px, 2.5vw, 24px);
}

.about-pdf__maturity-card:nth-child(even) {
  background: #f0f7f8;
  border-color: rgba(63, 111, 124, 0.2);
}

@media (max-width: 760px) {
  .about-hero {
    align-items: flex-end;
    background:
      linear-gradient(
        180deg,
        rgba(23, 22, 25, 0.68) 0%,
        rgba(23, 22, 25, 0.42) 100%
      ),
      url("posture.jpg") center 42% / cover no-repeat;
    background-position: 56% center;
    min-height: 390px;
    padding: 116px 24px 54px;
  }

  .about-pdf {
    padding: 34px 24px 72px;
  }

  .about-pdf__section {
    margin-top: 34px;
  }

  .about-pdf__reference-grid,
  .about-pdf__values-grid,
  .about-pdf__maturity-grid {
    grid-template-columns: 1fr;
  }

  .about-pdf__reference-grid {
    gap: 28px;
  }

  .about-pdf__values-grid {
    gap: 18px;
  }

  .about-pdf__maturity-grid {
    gap: 18px;
    margin-top: 24px;
  }

  .about-fiche-modal {
    align-items: flex-end;
    padding: 12px;
  }

  .about-fiche-modal__content {
    max-height: calc(100vh - 24px);
    padding: 28px 20px;
  }

  .about-fiche-modal__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 460px) {
  .about-pdf {
    padding: 26px 20px 60px;
  }

  .about-pdf p,
  .about-pdf li {
    font-size: 0.93rem;
  }

  .about-pdf__list,
  .about-pdf__reference,
  .about-pdf__accent-copy {
    padding-left: 17px;
  }

  .about-pdf__values-heading {
    gap: 9px;
  }

  .about-pdf__value-card {
    min-height: 0;
  }

  .about-pdf__maturity-card {
    padding: 19px 17px;
  }
}

@keyframes pageFadeIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ═══════════════════════════════════════════
   SECTION UTILS
═══════════════════════════════════════════ */
.section {
  padding: 100px 48px;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.section-label::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}

.section-title {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: 1.7rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--gray-700);
  max-width: 580px;
  line-height: 1.8rem;
  text-align: justify;
}

.text-white {
  color: rgba(26, 23, 23, 0.954);
  text-align: justify;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.5rem 0.8rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-family: "Agency FB", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.btn-blue {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(29, 106, 245, 0.3);
}
.btn-blue:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(29, 106, 245, 0.4);
}
.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline:hover {
  background: var(--blue-pale);
  color: rgba(0, 0, 0, 0.646);
}
/* REVEAL ANIMATIONS */
.js.aos-fallback .reveal,
.js.aos-fallback .reveal-left,
.js.aos-fallback .reveal-right {
  opacity: 0;
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.js.aos-fallback .reveal.reveal-from-left,
.js.aos-fallback .reveal-left {
  transform: translate3d(-42px, 0, 0) scale(0.985);
}

.js.aos-fallback .reveal.reveal-from-right,
.js.aos-fallback .reveal-right {
  transform: translate3d(42px, 0, 0) scale(0.985);
}

.reveal li {
  color: var(--gray-700);
}

.js.aos-fallback .reveal.visible,
.js.aos-fallback .reveal-left.visible,
.js.aos-fallback .reveal-right.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ═══════════════════════════════════════════
   PAGE 1 — ACCUEIL
═══════════════════════════════════════════ */

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      135deg,
      rgba(3, 21, 58, 0.473) 0%,
      rgba(11, 38, 80, 0.678) 50%,
      rgba(13, 31, 74, 0.429) 100%
    ),
    url("F4.jpg") center/cover no-repeat;
  padding: 80px 48px 80px;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(
    ellipse 80% 80% at center,
    rgb(0, 0, 0) 20%,
    transparent 100%
  );
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
}
.orb-1 {
  width: 700px;
  height: 700px;
  background: rgba(29, 106, 245, 0.2);
  right: -200px;
  top: 50%;
  transform: translateY(-50%);
}
.orb-2 {
  width: 400px;
  height: 400px;
  background: rgba(232, 160, 32, 0.05);
  left: 10%;
  bottom: 5%;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}
.hero-badge {
  font-family: "Agency FB";
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(29, 106, 245, 0.15);
  border: 1px solid rgba(29, 106, 245, 0.35);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 3rem;
  animation: heroIn 0.8s ease both;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-light);
  animation: blink 2s infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
}
@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-title {
  font-family: "montserrat", sans-serif;
  color: var(--white);
  animation: heroIn 0.8s 0.1s ease both;
  line-height: 1.2;
  /* margin-top: 4rem; */
  font-size: 2rem;
  font-weight: 700;
}

.hero-title span {
  display: inline-block;
  font-family: "Aency FB", sans-serif;
  font-size: 1.8rem;
  font-weight: normal;
  line-height: 1;
}
.hero-title em {
  font-style: normal;
  color: var(--blue-light);
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 8rem;
  flex-wrap: wrap;
  animation: heroIn 0.8s 0.3s ease both;
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 1rem;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  animation: heroIn 0.8s 0.4s ease both;
}
.stat-num {
  font-family: "Agency FB", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  line-height: 1;
}
.stat-num em {
  color: var(--blue-light);
  font-style: normal;
}
.stat-lbl {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 6px;
}

/* HERO RIGHT VISUAL */
.hero-visual {
  position: relative;
  height: 480px;
  animation: heroIn 0.8s 0.2s ease both;
  margin-top: 5rem;
}

.hero-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  padding: 6px;
  color: var(--white);
}

.hero-card-float {
  width: 150px;
  bottom: 85px;
  right: 0;
  animation: floatCard 4s ease-in-out infinite;
}
.hero-card-float2 {
  width: 150px;
  bottom: 35px;
  left: 30px;
  animation: floatCard 4s 1s ease-in-out infinite;
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
.card-icon {
  font-size: 1.8rem;
}
.card-val {
  font-size: 1.4rem;
  font-weight: 700;
}
.card-lbl {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
}
.pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(29, 105, 245, 0.934);
  animation: expand 3s ease-in-out infinite;
}
.pulse-ring:nth-child(2) {
  animation-delay: 1s;
  width: 220px;
  height: 220px;
}
.pulse-ring:nth-child(3) {
  animation-delay: 2s;
  width: 140px;
  height: 140px;
  border-color: rgba(29, 106, 245, 0.35);
}
@keyframes expand {
  0% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(0.8);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.3);
  }
}

/* CE QUE NOUS FAISONS */
.what-section {
  padding: clamp(72px, 9vw, 100px) clamp(20px, 5vw, 48px);
  background: var(--white);
}
.what-inner {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 1rem;
}

.what-header {
  text-align: center;
}

.what-header .section-label {
  justify-content: center;
}

.what-header .section-title {
  margin: 0 auto 14px;
}

.what-header .section-desc {
  margin: 0 auto;
  text-align: center;
}

.what-layout {
  align-items: start;
  display: grid;
  gap: clamp(32px, 6vw, 80px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.what-layout p {
  text-align: justify;
}

.what-contributions-title {
  color: var(--blue);
  display: block;
  font-size: 1.5rem;
  margin-top: clamp(28px, 4vw, 40px);
  margin-bottom: 16px;
}

.what-audience-title {
  color: var(--navy);
  font-size: clamp(0.8rem, 1.5vw, 0.95rem);
  margin: 0 0 12px;
}

.what-visual {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.what-circle {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 2px solid rgba(43, 129, 227, 0.847);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: rotateSlow 20s linear infinite;
}
.what-circle::before {
  content: "";
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1px dashed rgba(29, 245, 241, 0.906);
  animation: rotateSlow 30s linear infinite reverse;
}
.what-circle-inner {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(0, 119, 255, 0.603);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Agency FB", serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  padding: 20px;
  box-shadow: 0 0 60px rgba(29, 106, 245, 0.3);
  animation: rotateSlow 20s linear infinite reverse;
}

.apports {
  margin: 0;
}

.apports-list {
  margin: 0;
  padding-left: 25px;
}

.apports-list li {
  margin-bottom: 10px;
  line-height: 1;
}

.orbit-dot {
  position: absolute;
  font-size: 1rem;
  width: 12px;
  height: 12px;
  background: rgb(8, 121, 214);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--blue-accent);
}
.orbit-dot:nth-child(1) {
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
}
.orbit-dot:nth-child(2) {
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  background-color: fuchsia;
}
.orbit-dot:nth-child(3) {
  left: -6px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
}
@keyframes rotateSlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* MISSION */
.mission-section {
  padding: 100px 48px;
  background: var(--blue-xpale);
}
.mission-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.mission-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.value-list {
  list-style: none;
  margin-top: 28px;
}
.value-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(18, 73, 163, 0.1);
}
.value-list li:last-child {
  border-bottom: none;
}

.value-list strong {
  color: var(--navy);
  font-size: 0.95rem;
  display: block;
  margin-bottom: 2px;
}

.mission-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.m-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid rgba(18, 73, 163, 0.1);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.m-card:hover {
  transform: translateX(8px);
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
}
.m-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.m-card-top h4 {
  color: var(--navy);
  font-size: 0.98rem;
  font-weight: 700;
  font-family: "Agency FB", sans-serif;
}
.m-card p {
  font-size: 0.83rem;
  color: var(--gray-500);
  text-align: justify;
}

/* POSTURE */
.posture-section {
  padding: clamp(64px, 8vw, 96px) clamp(20px, 5vw, 48px);
  background-color: var(--blue-xpale);
  position: relative;
  overflow: hidden;
}

.posture-inner {
  width: min(100%, 960px);
  margin: 0 auto;
  position: relative;
}
.posture-header {
  text-align: center;
}
.posture-header .section-label {
  justify-content: center;
  color: black;
}
.posture-header .section-label strong {
  color: var(--blue);
  font-size: 1.15em;
  font-weight: 800;
}
.posture-header .section-label::before {
  display: none;
}
.posture-header .section-title {
  max-width: 60ch;
  margin: 0 auto;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  line-height: 1.55;
  text-wrap: balance;
}

/* CONVICTION */
.conviction-section {
  background: rgba(13, 6, 253, 0.07);
  padding: clamp(72px, 9vw, 108px) clamp(20px, 5vw, 48px);
}

.conviction-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.conviction-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(18, 73, 163, 0.12);
  box-shadow: var(--shadow-sm);
  margin: clamp(36px, 5vw, 56px) auto 0;
  max-width: 720px;
  padding: clamp(30px, 5vw, 48px);
  position: relative;
  text-align: center;
  transition:
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.conviction-card:hover {
  border-color: rgba(18, 73, 163, 0.28);
  box-shadow: var(--shadow-lg);
}

.conviction-card__icon {
  display: block;
  line-height: 0;
  margin-bottom: 20px;
}

.conviction-card p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin: 0 auto;
  max-width: 60ch;
}

.conviction-card p + p {
  margin-top: 14px;
}

/* METRICS */
.metrics-section {
  padding: 80px 48px;
  background: var(--white);
}
.metrics-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 56px;
}
.metric-box {
  background: var(--white);
  padding: 40px 28px;
  text-align: center;
  transition: var(--transition);
}
.metric-box:hover {
  background: var(--blue-xpale);
}

.metric-lbl {
  font-size: 1rem;
  color: var(--blue-dark);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 8px;
  transition: var(--transition);
}

.metric-lbl:hover {
  color: var(--black);
}

.section-desc {
  margin-bottom: 28px;
}

/* ═══════════════════════════════════════════
   PAGE 3 — PRESTATIONS
═══════════════════════════════════════════ */
.presta-hero {
  margin-top: 4rem;
  padding: 160px 48px 80px;
  background:
    linear-gradient(
      135deg,
      rgba(3, 21, 58, 0.34) 0%,
      rgba(11, 38, 80, 0.676) 50%,
      rgba(13, 31, 74, 0.244) 100%
    ),
    url("F13.jpg") center/cover no-repeat;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.presta-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}
.presta-hero-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.presta-hero h1 {
  color: var(--white);
  margin-bottom: 20px;
}
.presta-hero p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.05rem;
}

.presta-section {
  padding: 100px 48px;
  background: var(--white);
}
.presta-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.presta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 20px;
}

.presta-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.presta-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}
/* IMAGE EN HAUT DES CARDS PRESTATIONS */
.presta-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.presta-card-img-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue-pale), var(--blue-xpale));
}

.presta-card-img-placeholder img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.presta-card-header {
  background: linear-gradient(135deg, var(--navy), var(--blue-dark));
  padding: 22px 28px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.presta-card-num {
  font-family: "Agency FB", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.12);
  line-height: 1;
  flex-shrink: 0;
}
.presta-card-title {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  font-family: "Agency FB", sans-serif;
}
.presta-card-body {
  padding: 28px;
  flex: 1;
}
.presta-card-body p {
  font-size: 0.87rem;
  color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: 16px;
}
.presta-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.ptag {
  background: var(--blue-pale);
  color: var(--blue-mid);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
}
.presta-card-footer {
  padding: 0 28px 28px;
}
.btn-savoir {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 8px;
  border: none;
  font-family: "Agency FB", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(29, 106, 245, 0.25);
}
.btn-savoir:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(29, 106, 245, 0.35);
}
.btn-savoir svg {
  transition: var(--transition);
}
.btn-savoir:hover svg {
  transform: translateX(4px);
}

.space {
  text-align: center;
}

.space .btn-savoir:nth-child(1) {
  margin-bottom: 0.2rem;
}

/* TOGGLE OFFRES GLOBALES / SECTORIELLES */
.offres-toggle-section {
  padding: 48px 48px 0;
  background: var(--gray-50, #f9fafb);
  text-align: center;
}
.offres-toggle-inner {
  max-width: 600px;
  margin: 0 auto;
}
.offres-type-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.offres-type-btn {
  padding: 14px 28px;
  border-radius: 100px;
  border: 2px solid var(--gray-200);
  background: var(--white);
  cursor: pointer;
  font-family: "Agency FB", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-700);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.offres-type-btn:hover,
.offres-type-btn.active {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(29, 106, 245, 0.3);
  transform: translateY(-2px);
}

/* Contenu basculable */
.offre-content {
  display: none;
}
.offre-content.active {
  display: block;
}

/* CARTES SECTORIELLES */
.sector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 56px;
}
.sector-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: fit-content;
}
.sector-card:hover {
  transform: translateY(-6px);
  border-color: var(--blue);
  box-shadow: var(--shadow-lg);
}
.sector-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.sector-icon {
  font-size: 1.8rem;
}
.sector-header h3 {
  color: var(--navy);
  font-size: 1.05rem;
}
.sector-intro {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 14px;
  line-height: 1.55;
  text-align: justify;
}
.sector-block {
  margin-bottom: 12px;
}
.sector-block strong {
  display: block;
  color: var(--navy);
  font-size: 0.85rem;
  margin-bottom: 6px;
}
.sector-block ul {
  list-style: none;
  margin: 0 0 0 18px;
  font-size: 0.83rem;
  color: var(--gray-700);
  line-height: 1.45;
}
.sector-block.results {
  border-left: 4px solid var(--blue);
  background: var(--blue-xpale);
  padding: 12px 16px;
  border-radius: 0 12px 12px 0;
}
.sector-block.results strong {
  margin-bottom: 6px;
}

.check-list {
  list-style: none;
  padding-left: 0;
}

.check-list li::before {
  content: "✓";
  color: rgb(9, 60, 137);
  font-weight: bold;
  margin-right: 10px;
}

.problems-hero {
  margin-top: 4rem;
  padding: 160px 48px 80px;
  background:
    linear-gradient(
      135deg,
      rgba(3, 21, 58, 0.82) 0%,
      rgba(11, 38, 80, 0.72) 50%,
      rgba(29, 106, 245, 0.5) 100%
    ),
    url("F6.jpg") center/cover;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.problems-hero-content {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.problems-hero h1 {
  color: var(--white);
  margin-bottom: 20px;
}

.problems-hero p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
}

.problems-section {
  padding: 100px 48px;
  background: var(--gray-50);
}

.problems-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  margin-top: 56px;
}

.problem-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 18px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.problem-card:hover {
  transform: translateY(-6px);
  border-color: var(--blue);
  box-shadow: var(--shadow-lg);
}

.problem-number {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--blue-xpale);
  color: var(--blue);
  font-weight: 800;
  margin-bottom: 18px;
}

.problem-card h3 {
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1.45;
  margin-bottom: 18px;
}

.problem-card ul {
  display: grid;
  gap: 6px;
  margin: 0 0 16px 18px;
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.45;
}

.problem-answer {
  border-left: 4px solid var(--blue);
  background: var(--blue-xpale);
  padding: 16px 18px;
  border-radius: 0 12px 12px 0;
  color: var(--gray-700);
  font-size: 0.9rem;
  line-height: 1.5;
}

.problem-answer strong {
  color: var(--navy);
}

.evaluation-popup {
  position: fixed;
  z-index: 1200;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(3, 21, 58, 0.7);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.evaluation-popup.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.evaluation-popup__content {
  position: relative;
  width: min(100%, 620px);
  padding: 52px 56px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 24px;
  background: linear-gradient(135deg, var(--navy), var(--blue-dark));
  box-shadow: 0 24px 70px rgba(3, 21, 58, 0.5);
  color: var(--white);
  text-align: center;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s ease;
}

.evaluation-popup.is-visible .evaluation-popup__content {
  transform: translateY(0) scale(1);
}

.evaluation-popup__content::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(233, 13, 13, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  pointer-events: none;
}

.evaluation-popup__content > * {
  position: relative;
}

.evaluation-popup__close {
  position: absolute;
  top: 14px;
  right: 18px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}

.evaluation-popup__close:hover,
.evaluation-popup__close:focus-visible {
  background: rgba(255, 255, 255, 0.14);
}

.evaluation-popup__close:focus-visible,
.evaluation-popup__cta:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.evaluation-popup__eyebrow {
  margin-bottom: 12px;
  color: var(--blue-light);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.evaluation-popup h2 {
  margin: 0;
  font-family: "Agency FB", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.evaluation-popup__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.evaluation-popup__actions div {
  height: 5vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
}

.evaluation-popup__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 0;
  border-radius: 9px;
  background: var(--blue);
  color: var(--white);
  font-family: "Agency FB", serif;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: var(--transition);
}

.evaluation-popup__cta--stacked {
  flex-direction: column;
  gap: 3px;
  cursor: pointer;
}

.evaluation-popup__cta:hover {
  background: var(--blue-light);
  color: var(--navy);
  transform: translateY(-2px);
}

.problems-cta-section {
  padding: 80px 48px;
  background: var(--white);
  text-align: center;
}

.problems-cta-inner {
  max-width: 700px;
  margin: 0 auto;
}

.problems-cta-inner h2 {
  color: var(--navy);
  margin-bottom: 16px;
}

.problems-cta-inner p {
  margin-bottom: 32px;
}

/* ═══════════════════════════════════════════
   PAGE 5 — CONTACT
═══════════════════════════════════════════ */
.contact-hero {
  margin-top: 4rem;
  padding: 160px 48px 80px;
  background:
    linear-gradient(
      135deg,
      rgba(23, 22, 25, 0.84) 0%,
      rgba(23, 22, 25, 0.62) 50%,
      rgba(23, 22, 25, 0.46) 100%
    ),
    url("contact.jpg") center/cover no-repeat;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}
.contact-hero-content {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}
.contact-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}
.contact-hero p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.05rem;
}

.contact-section {
  padding: 100px 48px;
  background: var(--white);
}
.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 70px;
}

/* LEFT: infos */
.contact-info h2 {
  color: var(--navy);
  margin-bottom: 16px;
  font-size: 1.8rem;
}
.contact-info > p {
  margin-bottom: 36px;
  font-size: 0.95rem;
}
.info-items {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.info-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px;
  border-radius: var(--radius);
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  transition: var(--transition);
}
.info-item:hover {
  border-color: var(--blue);
  background: var(--blue-xpale);
  box-shadow: var(--shadow-md);
}
.info-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  flex-shrink: 0;
}
.info-text strong {
  display: block;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.info-text p {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin: 0;
  line-height: 1.5;
}
.info-text a {
  color: var(--blue);
  text-decoration: none;
}
.info-text a:hover {
  text-decoration: underline;
}
.contact-socials {
  margin-top: 32px;
}
.contact-socials h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 14px;
}
.social-links {
  display: flex;
  gap: 10px;
}
.soc-btn {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.soc-btn:hover {
  background: rgba(72, 232, 232, 0.539);
  color: var(--white);
  transform: translateY(-2px);
}

/* RIGHT: form */
.contact-form-box {
  background: var(--white);
  border-radius: 20px;
  padding: 44px;
  border: 1.5px solid var(--gray-200);
  box-shadow: var(--shadow-md);
}
.contact-form-box h3 {
  color: var(--navy);
  font-size: 1.4rem;
  margin-bottom: 6px;
}
.contact-form-box > p {
  font-size: 0.87rem;
  color: var(--gray-500);
  margin-bottom: 32px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gray-700);
  letter-spacing: 0.03em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border-radius: 10px;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  font-family: "Agency FB", sans-serif;
  font-size: 0.9rem;
  color: var(--gray-900);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(29, 106, 245, 0.08);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-group select {
  cursor: pointer;
  max-width: 100%;
  min-width: 0;
  width: 100%;
}
.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-family: "Agency FB", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(29, 106, 245, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.form-submit:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(29, 106, 245, 0.4);
}
.form-submit:active {
  transform: translateY(0);
}
.success-msg {
  display: none;
  text-align: center;
  padding: 32px;
  background: linear-gradient(
    135deg,
    rgba(29, 106, 245, 0.08),
    rgba(18, 73, 163, 0.05)
  );
  border-radius: 12px;
  border: 1px solid rgba(29, 106, 245, 0.2);
}
.success-msg.show {
  display: block;
  animation: heroIn 0.5s ease;
}
.success-msg span {
  font-size: 3rem;
  display: block;
  margin-bottom: 14px;
}
.success-msg h4 {
  color: var(--navy);
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.success-msg p {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin: 0;
}

.form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* ═══════════════════════════════════════════
   FOOTER GLOBAL
═══════════════════════════════════════════ */
.site-footer {
  background: var(--navy);
  padding: 60px 48px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.footer-logo .logo {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 14px;
}

.footer-logo .logo img {
  width: 70%;
  object-fit: cover;
  border-radius: 6px;
}

.footer-logo p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
  text-align: justify;
}
.footer-col h5 {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  transition: color 0.25s;
  cursor: pointer;
}
.footer-col ul li a:hover {
  color: rgba(255, 255, 255, 0.85);
}
.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.25);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .nav-inner {
    padding: 0 20px;
  }

  .logo {
    font-size: 1.2rem;
  }

  .nav-links {
    gap: 0px;
  }

  .nav-links a {
    font-size: 1rem;
    padding: 6px 10px;
    white-space: nowrap;
  }

  .hero-badge {
    margin-bottom: 3rem;
    width: 100%;
  }

  .hero-title {
    font-size: 2.8rem;
    margin-bottom: 3rem;
  }

  .hero-actions {
    margin-top: 5rem;
  }

  .hero-stats {
    margin-top: 2rem;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: 100vh;
  }

  .hero-visual {
    display: none;
  }

  .sector-grid,
  .mission-layout {
    grid-template-columns: 1fr;
  }
  .contact-inner {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .problems-grid {
    grid-template-columns: 1fr;
  }

  .evaluation-popup__content {
    padding: 46px 30px 36px;
  }
}

/* Tablettes : éviter une hauteur de hero excessive lorsque le visuel est masqué. */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero {
    min-height: 100vh;
    min-height: 100svh;
    padding: 92px 32px 40px;
  }

  .hero-inner {
    min-height: 0;
  }

  .hero-badge {
    margin-bottom: 32px;
  }

  .hero-title {
    font-size: clamp(2.25rem, 4.5vw, 2.8rem);
    margin-top: 0;
    margin-bottom: 0;
  }

  .hero-actions {
    margin-top: 32px;
  }

  .hero-stats {
    margin-top: 24px;
  }
}

/* android */
@media (max-width: 768px) {
  .evaluation-popup__actions {
    align-items: center;
    flex-direction: column;
  }

  .evaluation-popup__cta {
    align-self: center;
    justify-content: center;
  }

  #sd {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-inner {
    padding: 0 20px;
  }
  .nav-links {
    display: none;
  }

  .hero-badge {
    font-size: 0.6rem;
    line-height: 1.35;
    letter-spacing: 0.07em;
    margin-bottom: 2rem;
    padding: 8px 12px;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.08;
    margin-top: 0;
    margin-bottom: 0;
  }

  .hero-actions {
    margin-top: 28px;
  }

  .hero-stats {
    margin-top: 1rem;
  }

  .hamburger {
    display: flex;
  }
  .what-visual {
    display: none;
  }

  .about-pdf__expertise-layout {
    grid-template-columns: 1fr;
  }

  #evalContent {
    padding: 20px;
  }

  .step-label {
    font-size: 0.5rem !important;
    margin: 1px;
  }

  .eval-progress {
    margin-right: 17px;
  }

  .evaluation-question {
    flex-direction: column;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 3px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-family: "Agency FB", sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
    letter-spacing: 0.02em;
  }

  .scores-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr) !important;
  }

  .section,
  .hero,
  .presta-hero,
  .problems-hero,
  .contact-hero {
    padding-left: 20px;
    padding-right: 20px;
  }
  .what-layout,
  .presta-grid {
    grid-template-columns: 1fr;
  }
  .what-layout {
    gap: 28px;
  }
  .problems-section,
  .problems-cta-section {
    padding-left: 20px;
    padding-right: 20px;
  }
  .metrics-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 24px;
  }

  .contact-form-box .form-group select {
    font-size: 16px;
    min-height: 48px;
  }

  .evaluation-popup__actions div {
    width: 90%;
    height: 1vh;
    text-align: center;
  }

  .metric-lbl {
    color: #0a0f1e;
  }
}

/* Navigation compacte : le menu complet ne tient plus de façon fiable sur tablette. */
@media (max-width: 1100px) {
  .nav-inner {
    height: 70px;
    padding: 0 clamp(16px, 3vw, 32px);
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    min-height: 44px;
    margin-left: 8px;
    border-radius: 10px;
  }

  .hamburger:hover,
  .hamburger:focus-visible {
    background: var(--blue-pale);
    outline: none;
  }

  .hamburger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .hamburger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .hamburger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

@media (max-width: 420px) {
  .logo {
    font-size: 1.1rem;
  }

  .logo sub {
    display: none;
  }

  .nav-cta {
    min-height: 38px;
    padding: 7px 12px !important;
    font-size: 0.8rem !important;
  }

  .hamburger {
    width: 40px;
    min-height: 40px;
    margin-left: 4px;
  }
}

body.menu-open {
  overflow: hidden;
}

/* Mobile nav drawer */
.nav-drawer {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: var(--white);
  padding: 20px;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: none;
}
.nav-drawer.open {
  transform: translateX(0);
}
.nav-drawer ul {
  list-style: none;
}
.nav-drawer ul li {
  padding: 4px 0;
}
.nav-drawer ul li a {
  display: block;
  padding: 14px 18px;
  border-radius: 10px;
  color: var(--gray-700);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}
.nav-drawer ul li a:hover {
  background: var(--blue-pale);
  color: var(--blue);
}

/* Sous-menu Missions Types : le toucher remplace le survol sur mobile et tablette. */
.nav-drawer .drawer-missions {
  position: relative;
  padding-right: 48px;
}

.nav-drawer .drawer-missions > a {
  padding-right: 8px;
}

.drawer-missions-toggle {
  position: absolute;
  top: 4px;
  right: 0;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--blue);
  cursor: pointer;
}

.drawer-missions-toggle::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-3px);
  transition: transform 0.2s ease;
}

.drawer-missions.is-expanded .drawer-missions-toggle::before {
  transform: rotate(225deg) translate(-3px, -1px);
}

.nav-drawer .drawer-missions-submenu {
  display: grid;
  gap: 4px;
  max-height: 0;
  margin: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, margin 0.3s ease, opacity 0.2s ease;
}

.nav-drawer .drawer-missions.is-expanded .drawer-missions-submenu {
  max-height: 320px;
  margin: 4px 0 8px;
  opacity: 1;
}

.nav-drawer .drawer-missions-submenu a {
  padding: 11px 16px;
  color: var(--gray-700);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.35;
}

/* Scroll progress */
#scroll-prog {
  position: fixed;
  top: 70px;
  left: 0;
  height: 3px;
  background: var(--blue);
  z-index: 999;
  width: 0%;
  transition: width 0.1s;
  border-radius: 0 2px 2px 0;
}

/* ═══════════════════════════════════════════
   PAGE AUTO-ÉVALUATION
═══════════════════════════════════════════ */
.eval-hero {
  margin-top: 4rem;
  padding: 160px 48px 80px;
  background:
    linear-gradient(
      135deg,
      rgba(23, 22, 25, 0.84) 0%,
      rgba(23, 22, 25, 0.62) 50%,
      rgba(23, 22, 25, 0.46) 100%
    ),
    url("auto1.jpg") center/cover no-repeat;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.eval-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}
.eval-hero-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.eval-hero h1 {
  color: var(--white);
  margin-bottom: 20px;
}
.eval-hero p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.05rem;
}

.eval-section {
  padding: 80px 48px;
  background: var(--blue-xpale);
}
.eval-inner {
  max-width: 900px;
  margin: 0 auto;
}
/* Sélecteur de type */
.eval-type-btns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 40px 0 48px;
}
.eval-type-btn {
  padding: 18px 12px;
  border-radius: 14px;
  border: 2px solid var(--gray-200);
  background: var(--white);
  cursor: pointer;
  font-family: "Agency FB", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-700);
  text-align: center;
  transition: var(--transition);
  gap: 8px;
  box-shadow: var(--shadow-sm);
}
.eval-type-btn i {
  font-size: 1.4rem;
}
.eval-type-btn:hover,
.eval-type-btn.active {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(29, 106, 245, 0.3);
  transform: translateY(-3px);
}
.eval-type-btn.complete-btn.active {
  background: linear-gradient(135deg, var(--blue), var(--navy));
}

/* tConeneur du questionnaire */
#evalContent {
  background: var(--white);
  border-radius: 30px;
  padding: 20px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(18, 73, 163, 0.08);
}
.evaluation-intro {
  background: var(--blue-xpale);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 32px;
  border-left: 4px solid var(--blue);
}
.evaluation-intro p {
  margin: 0;
  font-size: 0.9rem;
}

/* Questions */
.evaluation-question {
  padding: 16px 20px;
  border-radius: 12px;
  border: 1.5px solid var(--gray-200);
  margin-bottom: 10px;
  transition: var(--transition);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.evaluation-question:hover {
  border-color: rgba(29, 106, 245, 0.3);
  background: var(--blue-xpale);
}
.evaluation-question.error {
  border-color: #dc2626;
  background: #fff5f5;
}
.question-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--gray-900);
  font-weight: 500;
  flex: 1;
  margin-bottom: 0;
}
.q-num {
  background: var(--blue);
  color: var(--white);
  border-radius: 8px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
}
.radio-group {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  padding-left: 0;
}
.radio-label {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 7px 14px;
  border-radius: 8px;
  border: 1.5px solid var(--gray-200);
  font-size: 0.82rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}
.radio-label:has(input:checked) {
  border-color: var(--blue);
  background: var(--blue-pale);
  color: var(--blue);
}
.radio-label input {
  accent-color: var(--blue);
}

/* Navigation entre tabs (éval complète) */
.eval-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 36px;
}
.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
  flex: 1;
  text-align: center;
}
.progress-step::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 50%;
  right: -50%;
  height: 2px;
  background: var(--gray-200);
  z-index: 0;
}
.progress-step:last-child::before {
  display: none;
}
.progress-step.completed::before {
  background: var(--blue);
}
.step-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--gray-200);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray-500);
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.progress-step.active .step-dot {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
}
.progress-step.completed .step-dot {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
}
.step-label {
  font-size: 0.7rem;
  color: var(--gray-500);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.progress-step.active .step-label {
  color: var(--blue);
}

.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}

.eval-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
}

/* Résultats */
.axis-results,
#completeEvaluationResults {
  display: none;
  margin-top: 32px;
  padding: 26px;
  border-radius: 16px;
  border: 1px solid rgba(18, 73, 163, 0.1);
  box-shadow: var(--shadow-md);
}
.axis-results.active {
  display: block;
}
#completeEvaluationResults {
  display: none;
}
.results-title {
  text-align: center;
  color: var(--navy);
  margin-bottom: 24px;
  font-size: 1.4rem;
}
.score-display {
  font-family: "Agency FB", serif;
  font-size: 4rem;
  font-weight: 900;
  text-align: center;
  color: var(--navy);
  margin: 16px 0;
  line-height: 1;
}
.results-message {
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 28px;
  line-height: 1.6;
}
.scores-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0;
}
.score-category {
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  border: 2px solid;
}
.score-category.good {
  background: #f0fdf4;
  border-color: #28a745;
}
.score-category.medium {
  background: #fffbeb;
  border-color: #ffc107;
}
.score-category.bad {
  background: #fff5f5;
  border-color: #dc3545;
}
.score-category h4 {
  color: var(--navy);
  font-size: 0.88rem;
  margin-bottom: 8px;
  font-family: "Agency FB", sans-serif;
}
.score-display-category {
  font-family: "Agency FB", serif;
  font-size: 2rem;
  font-weight: 700;
  margin: 8px 0;
}
.score-message {
  font-size: 0.78rem;
  color: var(--gray-500);
}
.applause-indicator {
  font-size: 1.5rem;
  margin-top: 8px;
}
@keyframes applause {
  0%,
  100% {
    transform: scale(1) rotate(0);
  }
  25% {
    transform: scale(1.3) rotate(-10deg);
  }
  75% {
    transform: scale(1.3) rotate(10deg);
  }
}
.applause-animation {
  animation: applause 0.6s ease 3;
}
.celebration-message {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  margin-bottom: 20px;
  border: 2px solid #f59e0b;
}
.celebration-message h4 {
  color: #92400e;
  margin-bottom: 6px;
}
.celebration-message p {
  color: #78350f;
  font-size: 0.9rem;
  margin: 0;
}
.recommendations {
  background: var(--blue-xpale);
  border-radius: 12px;
  padding: 24px;
  margin-top: 24px;
}
.recommendations h4 {
  color: var(--navy);
  margin-bottom: 14px;
  font-family: "Agency FB", sans-serif;
  font-size: 0.85rem;
}
.recommendations ul {
  padding-left: 20px;
}
.recommendations li {
  color: var(--gray-700);
  font-size: 0.88rem;
  margin-bottom: 8px;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
         PAGE FAQ
      ═══════════════════════════════════════════ */
.faq-hero {
  margin-top: 4rem;
  padding: 160px 48px 80px;
  background:
    linear-gradient(
      135deg,
      rgba(3, 21, 58, 0.477) 0%,
      rgba(11, 38, 80, 0.429) 50%,
      rgba(13, 31, 74, 0.596) 100%
    ),
    url("foire_aux_question.jpg") center/cover no-repeat;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.faq-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}
.faq-hero-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.faq-hero h1 {
  color: var(--white);
  margin-bottom: 20px;
}
.faq-hero p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.05rem;
}

.faq-section {
  padding: clamp(56px, 8vw, 88px) clamp(16px, 5vw, 48px);
  background: var(--blue-xpale);
}

.faq-inner {
  max-width: 960px;
  margin: 0 auto;
}

.faq-intro {
  margin-bottom: clamp(28px, 5vw, 48px);
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.faq-intro p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--blue-mid);
  font-family: "Agency FB", serif;
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-weight: 600;
  line-height: 1.5;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.faq-item:hover,
.faq-item:focus-within,
.faq-item.open {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
}

.faq-question {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  width: 100%;
  gap: 18px;
  padding: 22px 28px;
  border: 0;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  font-family: "Agency FB", sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.08rem);
  font-weight: 600;
  line-height: 1.45;
  text-align: left;
  transition:
    color 0.25s ease,
    background-color 0.25s ease;
}

.faq-question:hover,
.faq-question:focus-visible,
.faq-item.open .faq-question {
  color: var(--blue);
}

.faq-question:focus-visible {
  outline: 3px solid rgba(48, 128, 232, 0.45);
  outline-offset: -3px;
}

.faq-question-content {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  gap: 14px;
}

.faq-number {
  display: inline-grid;
  flex: 0 0 2.35rem;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-pale);
  color: var(--blue);
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1;
}

.faq-icon {
  display: grid;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  place-items: center;
  align-self: center;
  border-radius: 50%;
  background: var(--blue-pale);
  color: var(--blue);
  font-family: Arial, sans-serif;
  font-size: 0.5rem;
  font-weight: 400;
  line-height: 1;
  transition:
    transform 0.25s ease,
    color 0.25s ease,
    background-color 0.25s ease;
  animation: anim 1s ease-out infinite;
}

@keyframes anim {
  0% {
    color: #009de1;
  }
  50% {
    color: transparent;
  }
  90% {
    color: #009de1;
  }
  100% {
    color: transparent;
  }
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--blue);
  color: var(--white);
  animation: none;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-content {
  min-height: 0;
  overflow: hidden;
  padding: 0 28px;
  transition: padding 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.open .faq-answer-content {
  padding: 0 28px 22px;
}

.faq-answer p,
.faq-answer li {
  color: var(--gray-700);
  font-size: 0.95rem;
  line-height: 1.55;
}

.faq-answer p {
  margin: 0 0 10px;
  text-align: justify;
}

.faq-answer-content > p:first-child::before {
  content: "➢";
  margin-right: 0.5rem;
  color: var(--blue);
  font-weight: 700;
}

.faq-answer-content em {
  color: #009de1;
  font-style: normal;
}

.faq-answer .faq-consequence {
  margin-top: 12px;
  color: var(--navy);
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer ul {
  margin: 0 0 12px;
  padding-left: 1.25rem;
}

.faq-answer ul li {
  margin-bottom: 4px;
}

.faq-answer ul li::marker {
  color: var(--blue);
}

.faq-cta {
  margin-top: clamp(36px, 5vw, 48px);
  padding: clamp(28px, 5vw, 40px);
  border-radius: 20px;
  background: linear-gradient(135deg, var(--navy), var(--blue-dark));
  color: var(--white);
  text-align: center;
}

.faq-cta h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 1.3rem;
}

.faq-cta p {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.faq-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.faq-cta-secondary {
  border-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
  .faq-section {
    padding: 60px 24px;
  }
}

@media (max-width: 640px) {
  .faq-item {
    border-radius: 13px;
  }

  .faq-question {
    gap: 12px;
    padding: 18px;
  }

  .faq-question-content {
    gap: 10px;
  }

  .faq-number {
    flex-basis: 2rem;
    width: 2rem;
    height: 2rem;
    font-size: 0.76rem;
  }

  .faq-icon {
    flex-basis: 28px;
    width: 28px;
    height: 28px;
    font-size: 0.4rem;
  }

  .faq-answer-content {
    padding: 0 18px;
  }

  .faq-item.open .faq-answer-content {
    padding: 0 18px 18px;
  }

  .faq-answer p,
  .faq-answer li {
    font-size: 0.92rem;
    line-height: 1.55;
  }
}

/* ═══════════════════════════════════════════
         PAGE PARTENARIAT
      ═══════════════════════════════════════════ */
.avantages-hero {
  margin-top: 4rem;
  padding: 160px 48px 80px;
  background:
    linear-gradient(
      135deg,
      rgba(23, 22, 25, 0.84) 0%,
      rgba(23, 22, 25, 0.62) 50%,
      rgba(23, 22, 25, 0.46) 100%
    ),
    url("F3.jpg") center/cover no-repeat;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.avantages-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}
.avantages-hero-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  z-index: 1;
}
.avantages-hero h1 {
  color: var(--white);
  margin-bottom: 20px;
}
.avantages-hero p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.05rem;
}

.partnership-hero-label {
  color: rgba(255, 255, 255, 0.68);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.partnership-hero-accent {
  color: var(--blue-light);
  font-style: normal;
}

.partnership-pdf {
  --partnership-blue: var(--blue);
  --partnership-blue-deep: var(--blue-mid);
  --partnership-line: #9dcbff;
  --partnership-text: var(--gray-700);
  --partnership-title: var(--navy);
  background: var(--white);
  color: var(--partnership-text);
  font-family: "Agency FB", sans-serif;
  overflow-x: hidden;
  padding: 92px 48px 104px;
}

.partnership-pdf__inner {
  margin: 0 auto;
  max-width: 980px;
}

.partnership-pdf__header {
  margin-bottom: 42px;
}

.partnership-pdf__eyebrow {
  color: var(--partnership-blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.partnership-pdf h1 {
  color: var(--partnership-blue-deep);
  font-family: inherit;
  font-size: clamp(2rem, 4vw, 2.7rem);
  font-weight: 700;
}

.partnership-pdf__section {
  margin-top: 42px;
  text-align: justify;
}

.partnership-pdf__section h2 {
  color: var(--partnership-blue-deep);
  font-family: inherit;
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.partnership-pdf p,
.partnership-pdf li {
  color: var(--partnership-text);
  font-size: 0.98rem;
  line-height: 1.68;
}

.partnership-pdf p + p {
  margin-top: 15px;
}

.partnership-pdf strong {
  color: var(--partnership-title);
  font-weight: 700;
}

.partnership-pdf__accent-copy,
.partnership-pdf__reference,
.partnership-pdf__objectives {
  border-left: 2px solid var(--partnership-line);
  padding-left: 24px;
}

.partnership-pdf__conviction,
.partnership-pdf__cta {
  border: 1px solid #171717;
  padding: 20px 22px 18px;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.partnership-pdf__conviction:hover,
.partnership-pdf__cta:hover,
.partnership-pdf__reference:hover,
.partnership-pdf__objectives li:hover {
  border-color: var(--partnership-blue);
  box-shadow: 0 8px 24px rgba(29, 106, 245, 0.13);
  transform: translateY(-2px);
}

.partnership-pdf__conviction p {
  color: var(--partnership-title);
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.45;
}

.partnership-pdf__reference-grid {
  display: grid;
  gap: 30px 42px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.partnership-pdf__reference {
  min-height: 100%;
  padding-bottom: 12px;
  padding-top: 2px;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.partnership-pdf__reference--wide {
  grid-column: 1 / -1;
}

.partnership-pdf__reference h3 {
  color: var(--partnership-title);
  font-family: inherit;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0;
}

.partnership-pdf__accent-copy {
  margin-top: 38px;
  padding-bottom: 1px;
}

.partnership-pdf__objectives {
  counter-reset: partnership-objective;
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 22px 0 0;
}

.partnership-pdf__objectives li {
  border: 1px solid #171717;
  counter-increment: partnership-objective;
  margin-left: 0;
  min-height: 92px;
  padding: 18px 20px 18px 74px;
  position: relative;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.partnership-pdf__objectives li::before {
  align-items: center;
  background: var(--partnership-blue);
  color: var(--white);
  content: counter(partnership-objective, decimal-leading-zero);
  display: flex;
  font-size: 0.8rem;
  font-weight: 800;
  height: 42px;
  justify-content: center;
  left: 18px;
  position: absolute;
  top: 18px;
  width: 42px;
}

.partnership-pdf__cta {
  background: var(--blue-xpale);
  border-color: rgba(18, 73, 163, 0.28);
  text-align: center;
}

.partnership-pdf__cta p {
  text-align: center;
}

.partnership-pdf__button {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--partnership-blue);
  cursor: pointer;
  display: inline-flex;
  font-family: inherit;
  font-size: 0.98rem;
  font-weight: 700;
  gap: 7px;
  margin-top: 16px;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.partnership-pdf__button:hover,
.partnership-pdf__button:focus-visible {
  color: var(--partnership-blue-deep);
  transform: translateX(2px);
}

.partnership-pdf__button:focus-visible {
  outline: 2px solid var(--partnership-blue);
  outline-offset: 4px;
}

@media (max-width: 768px) {
  .partnership-pdf {
    padding: 72px 24px;
  }

  .partnership-pdf__section {
    margin-top: 34px;
  }

  .partnership-pdf__reference-grid {
    gap: 28px;
    grid-template-columns: 1fr;
  }

  .partnership-pdf__reference--wide {
    grid-column: auto;
  }

  .partnership-pdf__objectives li {
    padding: 74px 18px 18px;
  }

  .partnership-pdf__objectives li::before {
    left: 18px;
    top: 18px;
  }
}

/* En-têtes illustrés : même cadrage et même lisibilité que la page À propos. */
.problems-hero,
.presta-hero,
.contact-hero,
.avantages-hero,
.faq-hero,
.eval-hero {
  align-items: center;
  display: flex;
  margin-top: 0;
  min-height: clamp(360px, 48vw, 530px);
  padding: 150px 48px 78px;
}

.problems-hero-content,
.presta-hero-content,
.contact-hero-content,
.avantages-hero-content,
.faq-hero-content,
.eval-hero-content {
  position: relative;
  width: 100%;
  z-index: 1;
}

.problems-hero {
  background-position: 45% center;
}

.presta-hero,
.faq-hero,
.avantages-hero {
  background-position: center;
}

.contact-hero {
  background-position: 58% center;
}

.eval-hero {
  background-position: 60% center;
}

@media (max-width: 760px) {
  .problems-hero,
  .presta-hero,
  .contact-hero,
  .avantages-hero,
  .faq-hero,
  .eval-hero {
    align-items: flex-end;
    min-height: 390px;
    padding: 116px 24px 54px;
  }

  .problems-hero {
    background-position: 38% center;
  }

  .contact-hero {
    background-position: 62% center;
  }

  .eval-hero {
    background-position: 67% center;
  }
}
