/* =========================================================
   SUPER HUM AI — Executive advisory layer
   Typo: Source Serif 4 (display) + Source Sans 3 (UI/body)
   Designed as a matched Adobe pair for consulting clarity.
   ========================================================= */

:root {
  --sh-bg: #fef5ee;
  --sh-bg-soft: #f5ebe0;
  --sh-nav-bg: #ffffff;
  --sh-surface: #ffffff;
  --sh-ink: #0e1520;
  --sh-body: #2f3a47;
  --sh-muted: #5a6572;
  --sh-line: rgba(14, 21, 32, 0.1);
  --sh-line-strong: rgba(14, 21, 32, 0.16);
  --sh-blue: #0a3fd0;
  --sh-blue-ink: #0833a8;
  --sh-navy: #0e1520;
  --sh-navy-deep: #000719; /* identique au fond du logo footer */
  --sh-beige: #d9d0c3;

  --tj-ff-body: "Source Sans 3", "Mona Sans", "Helvetica Neue", Arial, sans-serif;
  --tj-ff-heading: "Source Sans 3", "Mona Sans", "Helvetica Neue", Arial, sans-serif;
  --tj-ff-display: "Source Serif 4", "Georgia", "Times New Roman", serif;

  --tj-fs-body: 17px;
  --tj-fs-p: 17px;

  --tj-color-common-white: #ffffff;
  --tj-color-common-black: #000000;
  --tj-color-heading-primary: var(--sh-ink);
  --tj-color-text-body: var(--sh-body);
  --tj-color-text-body-2: #87919d;
  --tj-color-text-body-3: var(--sh-muted);
  --tj-color-text-body-4: var(--sh-ink);
  --tj-color-text-body-5: rgba(255, 255, 255, 0.8);
  --tj-color-theme-primary: var(--sh-blue);
  --tj-color-theme-bg: var(--sh-bg-soft);
  --tj-color-theme-bg-2: #e7e0d5;
  --tj-color-theme-bg-3: var(--sh-navy);
  --tj-color-theme-dark: var(--sh-navy);
  --tj-color-theme-dark-2: #1a2430;
  --tj-color-theme-dark-3: #2f3a47;
  --tj-color-theme-dark-4: var(--sh-muted);
  --tj-color-theme-dark-5: #6b7682;
  --tj-color-grey-1: var(--sh-bg-soft);
  --tj-color-grey-2: #87919d;
  --tj-color-border-1: var(--sh-line);
  --tj-color-border-2: #243040;
  --tj-color-border-5: rgba(10, 63, 208, 0.14);
}

/* ---------- A11y / SEO helpers ---------- */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 10000;
  padding: 0.75rem 1.1rem;
  background: var(--sh-navy-deep);
  color: #fff;
  font-family: var(--tj-ff-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
  outline: 2px solid var(--sh-blue);
  outline-offset: 2px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ---------- Base ---------- */
body.superhum-page {
  background: var(--sh-bg);
  color: var(--sh-body);
  font-family: var(--tj-ff-body);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body.superhum-page ::selection {
  background: rgba(10, 63, 208, 0.14);
  color: var(--sh-ink);
}

body.superhum-page h1,
body.superhum-page h2,
body.superhum-page h3,
body.superhum-page h4,
body.superhum-page h5,
body.superhum-page h6 {
  color: var(--sh-ink);
  font-family: var(--tj-ff-heading);
  font-weight: 650;
  letter-spacing: -0.015em;
}

body.superhum-page p {
  color: var(--sh-body);
  max-width: 62ch;
}

body.superhum-page a {
  color: var(--sh-ink);
}

body.superhum-page .tj-preloader {
  display: none !important;
}

/* Back to top — garder le cercle + conic-gradient du template */
body.superhum-page #tj-back-to-top {
  border-radius: 50%;
  background-color: var(--tj-color-common-white);
  color: inherit;
}

body.superhum-page #tj-back-to-top.active {
  /* ne pas écraser le conic-gradient inline du JS */
  background-color: transparent;
}

body.superhum-page #tj-back-to-top-percentage {
  background-color: #ffffff;
  color: var(--sh-ink);
  border-radius: 50%;
  font-family: var(--tj-ff-body);
  font-weight: 600;
}

body.superhum-page #tj-back-to-top-percentage i {
  color: var(--sh-ink);
}

body.superhum-page .bg-shape-1,
body.superhum-page .bg-shape-2,
body.superhum-page .bg-shape-3,
body.superhum-page .bg-shape-4 {
  display: none;
}

body.superhum-page .section-gap {
  padding-top: 112px;
  padding-bottom: 112px;
}

@media (max-width: 991px) {
  body.superhum-page .section-gap {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

/* ---------- Buttons: institutional, not startup pills ---------- */
body.superhum-page .tj-primary-btn {
  background: var(--sh-navy);
  border: 1px solid var(--sh-navy);
  border-radius: 2px;
  font-family: var(--tj-ff-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 6px 6px 22px;
}

body.superhum-page .tj-primary-btn .btn-text {
  color: #fff;
}

body.superhum-page .tj-primary-btn .btn-icon {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  width: 40px;
  height: 40px;
}

body.superhum-page .tj-primary-btn .btn-icon i {
  color: #fff;
}

body.superhum-page .tj-primary-btn:hover {
  background: var(--sh-blue);
  border-color: var(--sh-blue);
}

body.superhum-page .tj-primary-btn:hover .btn-icon {
  background: rgba(255, 255, 255, 0.16);
}

body.superhum-page .text-btn {
  color: var(--sh-ink);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body.superhum-page .text-btn .btn-text,
body.superhum-page .text-btn .btn-icon i {
  color: inherit;
}

body.superhum-page .text-btn:hover {
  color: var(--sh-blue-ink);
}

body.superhum-page .sh-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 2px;
  border: 1px solid var(--sh-line-strong);
  color: var(--sh-ink);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.25s ease, background 0.25s ease;
}

body.superhum-page .sh-btn-ghost:hover {
  border-color: var(--sh-ink);
  background: rgba(14, 21, 32, 0.03);
  color: var(--sh-ink);
}

body.superhum-page .sh-btn-ghost i {
  font-size: 16px;
  transform: rotate(-45deg);
}

/* ---------- Logo ---------- */
.superhum-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  background: transparent;
  line-height: 0;
}

.superhum-logo--nav {
  background: var(--sh-nav-bg);
}

.superhum-logo__img {
  display: block;
  height: 44px;
  width: auto;
  max-width: 168px;
  object-fit: contain;
  background: var(--sh-nav-bg);
}

.superhum-logo--footer {
  background: var(--sh-navy-deep);
  display: inline-block;
}

.superhum-logo__img--footer {
  height: auto;
  width: min(100%, 364px);
  max-width: 364px;
  background: var(--sh-navy-deep);
}

.superhum-logo__mark {
  width: 38px;
  height: auto;
  display: block;
}

.superhum-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-family: var(--tj-ff-heading);
}

.superhum-logo__text .super {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.34em;
  color: var(--sh-ink);
  text-transform: uppercase;
}

.superhum-logo__text .hum {
  margin-top: 3px;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--sh-ink);
  text-transform: uppercase;
}

body.superhum-page .tj-footer-section .superhum-logo__text .super,
body.superhum-page .tj-footer-section .superhum-logo__text .hum {
  color: #fff;
}

/* ---------- Header ---------- */
body.superhum-page .header-area,
body.superhum-page .header-area.header-absolute {
  background: var(--sh-nav-bg);
}

body.superhum-page .header-sticky {
  background: var(--sh-nav-bg) !important;
  backdrop-filter: none;
  border-bottom: 1px solid var(--sh-line);
  box-shadow: none !important;
}

body.superhum-page .header-area .site_logo,
body.superhum-page .header-area .site_logo a,
body.superhum-page .header-area .superhum-logo--nav,
body.superhum-page .header-area .superhum-logo__img {
  background: var(--sh-nav-bg) !important;
}

body.superhum-page .header-area .mainmenu > ul > li > a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sh-ink);
}

body.superhum-page .header-area .mainmenu > ul > li > a:hover,
body.superhum-page .header-area .mainmenu > ul > li.current-menu-item > a,
body.superhum-page .header-sticky .mainmenu > ul > li > a:hover,
body.superhum-page .header-sticky .mainmenu > ul > li.current-menu-item > a {
  color: var(--sh-blue);
}

body.superhum-page .header-sticky .mainmenu > ul > li > a {
  color: var(--sh-ink);
}

@media (max-width: 767px) {
  .superhum-logo__img {
    height: 36px;
    max-width: 140px;
  }
}

body.superhum-page .header-button .tj-primary-btn,
body.superhum-page .header-sticky .header-button .tj-primary-btn {
  background: var(--sh-navy);
  border-color: var(--sh-navy);
}

body.superhum-page .menu_bar span {
  background: var(--sh-ink);
}

/* Burger : barres alignées (le template force first/last plus larges + margin auto) */
body.superhum-page .menu_bar.mobile_menu_bar {
  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0;
  background: transparent;
  border-radius: 0;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

body.superhum-page .menu_bar.mobile_menu_bar span,
body.superhum-page .menu_bar.mobile_menu_bar span:first-child,
body.superhum-page .menu_bar.mobile_menu_bar span:last-child {
  display: block;
  width: 22px !important;
  height: 2px !important;
  margin: 0 !important;
  border-radius: 1px;
  background: var(--sh-ink) !important;
  transform: none;
}

body.superhum-page .menu_bar.mobile_menu_bar:hover span,
body.superhum-page .menu_bar.mobile_menu_bar:hover span:first-child,
body.superhum-page .menu_bar.mobile_menu_bar:hover span:last-child {
  width: 22px !important;
}

/* ---------- Section headings ---------- */
body.superhum-page .sec-heading {
  margin-bottom: 56px;
}

body.superhum-page .sec-heading .sub-title,
body.superhum-page .sec-heading.style-2 .sub-title,
body.superhum-page .sec-heading.style-6 .sub-title,
body.superhum-page .sec-heading.style-3 .sub-title {
  display: inline-block;
  margin-bottom: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--sh-muted);
  font-family: var(--tj-ff-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

body.superhum-page .sec-heading .sub-title i {
  display: none;
}

body.superhum-page .sec-heading .sec-title,
body.superhum-page .sec-heading.style-2 .sec-title {
  font-family: var(--tj-ff-display);
  font-weight: 500;
  font-size: clamp(32px, 3.8vw, 46px);
  line-height: 1.18;
  letter-spacing: -0.018em;
  color: var(--sh-ink);
  max-width: 18ch;
}

body.superhum-page .sec-heading.text-center .sec-title,
body.superhum-page .sec-heading-centered .sec-title {
  max-width: 22ch;
  margin-inline: auto;
  text-align: center;
}

body.superhum-page .sec-heading.text-center .sub-title,
body.superhum-page .sec-heading-centered .sub-title {
  display: block;
  text-align: center;
}

body.superhum-page .sec-heading .sec-title span,
body.superhum-page .sec-heading.style-2 .sec-title span {
  color: inherit;
  font-style: normal;
}

body.superhum-page .sec-heading .desc {
  margin-top: 18px;
  max-width: 52ch;
  color: var(--sh-body);
  font-size: 17px;
  line-height: 1.7;
}

body.superhum-page .sec-heading.text-center .desc,
body.superhum-page .sec-heading-centered .desc {
  margin-inline: auto;
  text-align: center;
}

/* Global p max-width must not break centered blocks */
body.superhum-page .sec-heading.text-center p,
body.superhum-page .sec-heading-centered p {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Hero ---------- */
.sh-hero {
  position: relative;
  padding: 156px 0 96px;
  overflow: hidden;
}

.sh-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 64px;
  align-items: center;
}

.sh-hero__eyebrow {
  display: inline-block;
  margin-bottom: 22px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sh-muted);
}

.sh-hero__title {
  font-family: var(--tj-ff-display);
  font-weight: 500;
  font-size: clamp(40px, 5.2vw, 68px);
  line-height: 1.08;
  letter-spacing: -0.022em;
  color: var(--sh-ink);
  margin: 0 0 26px;
  max-width: 12ch;
}

.sh-hero__title .accent {
  display: block;
  color: var(--sh-blue);
  font-style: italic;
  font-weight: 400;
}

.sh-hero__desc {
  max-width: 38em;
  margin: 0 0 34px;
  font-size: 18px;
  line-height: 1.65;
  color: var(--sh-body);
}

.sh-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
  align-items: center;
  margin-bottom: 28px;
}

.sh-hero__cred {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sh-muted);
}

.sh-hero__cred li {
  position: relative;
}

.sh-hero__cred li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--sh-beige);
  transform: translateY(-50%);
}

.sh-hero__tagline {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sh-muted);
}

.sh-hero__visual {
  position: relative;
  min-height: 480px;
  border-radius: 2px;
  overflow: hidden;
  background: #00091e; /* fond exact de l'image monogramme */
  display: flex;
  align-items: center;
  justify-content: center;
}

.sh-hero__visual::before {
  display: none;
}

.sh-hero__mark {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  object-position: center;
  display: block;
  background: #00091e;
}

/* ---------- Values ---------- */
.sh-values {
  border-block: 1px solid var(--sh-line);
}

.sh-values__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 0;
  margin: 0;
  padding: 22px 0;
  list-style: none;
}

.sh-values__list li {
  position: relative;
  padding: 0 26px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sh-muted);
}

.sh-values__list li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
  height: 11px;
  background: var(--sh-line-strong);
  transform: translateY(-50%);
}

/* ---------- Services ---------- */
.sh-services {
  background: var(--sh-bg);
}

.sh-services .sh-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 56px;
  padding-top: 8px;
  border-top: 1px solid var(--sh-line);
}

.sh-service {
  padding-top: 28px;
}

.sh-service__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 24px;
  color: var(--sh-ink);
  font-size: 30px;
  line-height: 1;
  display: flex;
  align-items: center;
  opacity: 0.9;
}

.sh-service h3 {
  margin: 0 0 14px;
  font-family: var(--tj-ff-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sh-ink);
}

.sh-service p {
  margin: 0;
  max-width: 34em;
  font-size: 16px;
  line-height: 1.7;
  color: var(--sh-body);
}

/* ---------- Approach ---------- */
.sh-approach {
  background: var(--sh-surface);
  border-block: 1px solid var(--sh-line);
}

.sh-process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px 24px;
  position: relative;
  padding-top: 8px;
}

.sh-process::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 4%;
  right: 4%;
  height: 1px;
  background: var(--sh-line-strong);
}

.sh-process__item {
  position: relative;
  z-index: 1;
  padding: 0;
}

.sh-process__step {
  display: block;
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--sh-blue);
}

.sh-process__icon {
  display: none;
}

.sh-process__item h4 {
  margin: 0 0 10px;
  font-family: var(--tj-ff-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sh-ink);
}

.sh-process__item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--sh-body);
}

/* ---------- About ---------- */
.sh-about {
  background: var(--sh-bg);
}

.sh-about__photo {
  border-radius: 2px;
  overflow: hidden;
  background: var(--sh-bg-soft);
}

.sh-about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 540px;
  display: block;
  filter: contrast(1.02) saturate(0.92);
}

.sh-about__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 24px 0 32px;
  padding: 0;
  list-style: none;
}

.sh-about__meta span {
  display: inline-flex;
  align-items: center;
  padding: 0 14px 0 0;
  margin-right: 14px;
  border: 0;
  border-right: 1px solid var(--sh-line-strong);
  border-radius: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sh-muted);
  background: transparent;
}

.sh-about__meta span:last-child {
  border-right: 0;
  margin-right: 0;
  padding-right: 0;
}

.sh-about__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 2px;
  border: 1px solid var(--sh-line-strong);
  color: var(--sh-ink);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.sh-about__social:hover {
  background: var(--sh-navy);
  border-color: var(--sh-navy);
  color: #fff;
}

body.superhum-page .sh-about .sec-title {
  max-width: none;
}

body.superhum-page .sh-about .desc {
  max-width: 40em;
  font-size: 17px;
  line-height: 1.75;
  color: var(--sh-body);
}

/* ---------- Perspectives ---------- */
.sh-perspectives {
  background: var(--sh-bg);
}

.sh-perspectives__layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
}

a.sh-featured,
.sh-featured {
  position: relative;
  min-height: 460px;
  border-radius: 2px;
  overflow: hidden;
  background: var(--sh-navy-deep);
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none !important;
  color: #ffffff !important;
}

.sh-featured::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.07), transparent 42%),
    radial-gradient(circle at 12% 88%, rgba(10, 63, 208, 0.16), transparent 40%);
  pointer-events: none;
}

.sh-featured > * {
  position: relative;
  z-index: 1;
}

.sh-featured .category,
a.sh-featured .category {
  margin-bottom: 16px;
  font-family: var(--tj-ff-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68) !important;
}

.sh-featured h3,
a.sh-featured h3 {
  margin: 0 0 20px;
  color: #ffffff !important;
  font-family: var(--tj-ff-display);
  font-weight: 500;
  font-size: clamp(26px, 2.5vw, 34px);
  line-height: 1.28;
  letter-spacing: -0.015em;
  max-width: 18ch;
}

.sh-featured .meta,
a.sh-featured .meta {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.6) !important;
}

a.sh-featured:hover,
a.sh-featured:focus,
a.sh-featured:hover h3,
a.sh-featured:hover .category,
a.sh-featured:hover .meta {
  color: #ffffff !important;
}

.sh-post-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

a.sh-post,
.sh-post {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--sh-line);
  border-radius: 0;
  text-decoration: none !important;
  color: inherit;
  transition: opacity 0.25s ease;
}

.sh-post:first-child {
  padding-top: 0;
}

.sh-post:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.sh-post:hover {
  opacity: 0.82;
}

.sh-post__thumb {
  width: 96px;
  height: 72px;
  border-radius: 2px;
  overflow: hidden;
  background: var(--sh-bg-soft);
}

.sh-post__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sh-post .category {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sh-muted);
}

.sh-post h4 {
  margin: 7px 0 8px;
  font-family: var(--tj-ff-heading);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--sh-ink);
}

a.sh-post:hover h4 {
  color: var(--sh-ink);
}

.sh-post .meta {
  font-size: 13px;
  color: var(--sh-muted);
}

/* ---------- Newsletter / quote ---------- */
.sh-intel {
  background: var(--sh-bg-soft);
  border-block: 1px solid var(--sh-line);
}

.sh-quote {
  margin: 0;
  padding-left: 22px;
  border-left: 2px solid var(--sh-blue);
  font-family: var(--tj-ff-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.4;
  letter-spacing: -0.012em;
  color: var(--sh-ink);
  max-width: 22ch;
}

.sh-quote cite {
  display: block;
  margin-top: 22px;
  font-family: var(--tj-ff-body);
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sh-muted);
}

.sh-newsletter-form {
  display: flex;
  gap: 10px;
  margin-top: 28px;
  max-width: 520px;
}

.sh-newsletter-form input {
  flex: 1;
  min-width: 0;
  height: 52px;
  border: 1px solid var(--sh-line-strong);
  background: var(--sh-surface);
  padding: 0 18px;
  border-radius: 2px;
  color: var(--sh-ink);
  font-family: var(--tj-ff-body);
  font-size: 15px;
}

.sh-newsletter-form input::placeholder {
  color: var(--sh-muted);
}

.sh-newsletter-form input:focus {
  outline: none;
  border-color: var(--sh-ink);
  box-shadow: 0 0 0 3px rgba(14, 21, 32, 0.06);
}

/* ---------- Contact CTA ---------- */
.sh-cta {
  background: var(--sh-bg);
}

.sh-cta__panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  align-items: start;
  padding: 0;
  background: transparent;
  color: var(--sh-ink);
}

.sh-cta__panel h2 {
  margin: 0 0 16px;
  font-family: var(--tj-ff-display);
  font-weight: 500;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--sh-ink);
  max-width: 14ch;
}

.sh-cta__lead {
  max-width: 40em;
  margin: 0 0 32px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--sh-body);
}

.sh-cta__info {
  list-style: none;
  margin: 8px 0 0;
  padding: 32px 0 0;
  border-top: 1px solid var(--sh-line);
}

.sh-cta__info li {
  margin-bottom: 18px;
  color: var(--sh-body);
  font-size: 16px;
  line-height: 1.45;
}

.sh-cta__info a {
  color: var(--sh-ink);
  text-decoration: none;
  font-weight: 600;
}

.sh-cta__info a:hover {
  color: var(--sh-blue);
}

.sh-cta__info .label {
  display: block;
  margin-bottom: 5px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sh-muted);
}

/* ---------- Footer ---------- */
body.superhum-page .tj-footer-section,
body.superhum-page .tj-footer-section.h7-footer,
body.superhum-page .tj-footer-section .footer-main-area,
body.superhum-page .tj-footer-section .h7-footer-main,
body.superhum-page .tj-footer-section .tj-copyright-area,
body.superhum-page .tj-footer-section .footer-logo,
body.superhum-page .tj-footer-section .superhum-logo--footer,
body.superhum-page .tj-footer-section .superhum-logo__img--footer {
  background: var(--sh-navy-deep) !important;
}

body.superhum-page .tj-footer-section {
  color: rgba(255, 255, 255, 0.82);
}

body.superhum-page .tj-footer-section .footer-main-area {
  padding-top: 72px;
  padding-bottom: 40px;
}

body.superhum-page .tj-footer-section .footer-widget .title,
body.superhum-page .tj-footer-section .widget-contact .title,
body.superhum-page .tj-footer-section .widget-contact.style-2 .title,
body.superhum-page .tj-footer-section .widget-nav-menu .title {
  color: #ffffff !important;
  font-family: var(--tj-ff-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body.superhum-page .tj-footer-section .footer-text p,
body.superhum-page .tj-footer-section .copyright-text p,
body.superhum-page .copyright-text p {
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 15px;
}

body.superhum-page .tj-footer-section .footer-contact-info .contact-item,
body.superhum-page .tj-footer-section .footer-contact-info .contact-item span,
body.superhum-page .tj-footer-section .widget-contact.style-2 .footer-contact-info .contact-item span,
body.superhum-page .tj-footer-section .widget-nav-menu ul li a {
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 15px;
}

body.superhum-page .tj-footer-section .footer-contact-info .contact-item a,
body.superhum-page .tj-footer-section .widget-contact.style-2 .footer-contact-info .contact-item a {
  color: #ffffff !important;
  font-weight: 600;
  font-size: 15px;
}

body.superhum-page .tj-footer-section .widget-nav-menu ul li a:hover,
body.superhum-page .tj-footer-section .footer-contact-info .contact-item a:hover,
body.superhum-page .tj-footer-section .widget-contact.style-2 .footer-contact-info .contact-item a:hover {
  color: #c7d6ff !important;
}

body.superhum-page .tj-footer-section .social-links ul li a {
  background-color: rgba(255, 255, 255, 0.12) !important;
  border: 1px solid rgba(255, 255, 255, 0.28);
  opacity: 1 !important;
  width: 40px;
  height: 40px;
}

body.superhum-page .tj-footer-section .social-links a,
body.superhum-page .tj-footer-section .social-links a i {
  color: #ffffff !important;
}

body.superhum-page .tj-footer-section .social-links ul li a:hover {
  background-color: var(--sh-blue) !important;
  border-color: var(--sh-blue);
  opacity: 1 !important;
}

body.superhum-page .tj-footer-section .footer-contact-info {
  max-width: none;
}

body.superhum-page .hamburger_wrapper {
  background: var(--sh-navy-deep);
}

body.superhum-page .hamburger_bg {
  background-color: var(--sh-navy-deep) !important;
}

body.superhum-page .hamburger_logo,
body.superhum-page .hamburger_logo .superhum-logo--footer,
body.superhum-page .hamburger_logo .superhum-logo__img--footer {
  background: var(--sh-navy-deep) !important;
}

body.superhum-page .hamburger_logo .superhum-logo__img--hamburger {
  width: min(100%, 220px);
  max-width: 220px;
  height: auto;
}

body.superhum-page .hamburger_close_btn {
  color: #ffffff !important;
  min-width: 48px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

body.superhum-page .hamburger_close_btn:hover {
  color: #c7d6ff !important;
}

/* Nav links dans le panneau mobile */
body.superhum-page .hamburger_menu .mean-container .mean-nav ul li a,
body.superhum-page .hamburger_menu .mobile_menu ul li a,
body.superhum-page .hamburger-area .mean-nav ul li a {
  color: #ffffff !important;
  font-family: var(--tj-ff-body);
  font-size: 17px !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase !important;
  line-height: 1.3 !important;
  padding: 16px 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14) !important;
  min-height: 52px;
  display: flex !important;
  align-items: center;
  float: none !important;
  width: 100% !important;
}

body.superhum-page .hamburger_menu .mean-container .mean-nav ul li a:hover,
body.superhum-page .hamburger_menu .mobile_menu ul li a:hover,
body.superhum-page .hamburger-area .mean-nav ul li a:hover,
body.superhum-page .hamburger_menu .mean-container .mean-nav ul li.current-menu-item > a {
  color: #c7d6ff !important;
}

/* Champs / infos contact du panneau */
body.superhum-page .hamburger-title {
  color: #ffffff !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

body.superhum-page .hamburger-infos .subtitle {
  color: rgba(255, 255, 255, 0.62) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}

body.superhum-page .hamburger-infos .contact-link,
body.superhum-page .hamburger-infos .contact-item .contact-link,
body.superhum-page .hamburger-infos a.contact-link {
  color: #ffffff !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  line-height: 1.45;
  word-break: break-word;
}

body.superhum-page .hamburger-infos .contact-item {
  margin-bottom: 18px;
}

/* LinkedIn menu : style-3 = pastille blanche + icône forcée blanche → invisible */
body.superhum-page .hamburger-socials .social-links ul {
  gap: 10px;
}

body.superhum-page .hamburger-socials .social-links.style-3 ul li a,
body.superhum-page .hamburger-socials .social-links ul li a {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px;
  min-height: 44px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.12) !important;
  border: 1px solid rgba(255, 255, 255, 0.28);
  opacity: 1 !important;
  transform: none;
  color: #ffffff !important;
  font-size: 18px;
  line-height: 1;
}

body.superhum-page .hamburger-socials .social-links.style-3 ul li a i,
body.superhum-page .hamburger-socials .social-links ul li a i,
body.superhum-page .hamburger-socials .social-links a i::before {
  color: #ffffff !important;
  opacity: 1 !important;
  font-size: 18px;
  line-height: 1;
}

body.superhum-page .hamburger-socials .social-links.style-3 ul li a:hover,
body.superhum-page .hamburger-socials .social-links ul li a:hover {
  background-color: var(--sh-blue) !important;
  border-color: var(--sh-blue);
  opacity: 1 !important;
  transform: none;
}

body.superhum-page .hamburger-socials .social-links.style-3 ul li a:hover i {
  color: #ffffff !important;
}

/* ---------- Responsive AAA ---------- */
@media (max-width: 1199px) {
  .sh-process {
    grid-template-columns: repeat(3, 1fr);
  }

  .sh-process::before {
    display: none;
  }
}

@media (max-width: 991px) {
  body.superhum-page .header-area .header-wrapper {
    min-height: 68px;
    align-items: center;
  }

  body.superhum-page .menu_bar.mobile_menu_bar {
    display: inline-flex !important;
    cursor: pointer;
  }

  .sh-hero__grid,
  .sh-services .sh-service-grid,
  .sh-perspectives__layout,
  .sh-cta__panel {
    grid-template-columns: 1fr;
  }

  .sh-hero {
    padding: 112px 0 56px;
  }

  .sh-hero__title {
    max-width: none;
    font-size: clamp(34px, 9vw, 48px);
  }

  .sh-hero__desc {
    font-size: 16px;
    max-width: none;
  }

  .sh-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .sh-hero__actions .tj-primary-btn,
  .sh-hero__actions .sh-btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .sh-hero__visual,
  .sh-hero__mark {
    min-height: 280px;
  }

  .sh-about__photo img {
    min-height: 360px;
  }

  .sh-newsletter-form {
    flex-direction: column;
  }

  .sh-newsletter-form input {
    width: 100%;
    font-size: 16px; /* évite le zoom iOS */
    min-height: 52px;
  }

  .sh-newsletter-form .tj-primary-btn {
    width: 100%;
    justify-content: center;
  }

  .sh-quote {
    max-width: none;
    font-size: clamp(22px, 6vw, 30px);
  }

  body.superhum-page .sec-heading {
    margin-bottom: 36px;
  }

  body.superhum-page .sec-heading .sec-title {
    font-size: clamp(28px, 7vw, 40px);
    max-width: none;
  }

  body.superhum-page .sec-heading .desc {
    font-size: 16px;
    max-width: none;
  }
}

@media (max-width: 767px) {
  .superhum-logo__img {
    height: 34px;
    max-width: 132px;
  }

  .sh-process {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .sh-process__item {
    padding-bottom: 18px;
    border-bottom: 1px solid var(--sh-line);
  }

  .sh-process__item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .sh-post {
    grid-template-columns: 84px 1fr;
    gap: 14px;
  }

  .sh-post h4 {
    font-size: 16px;
  }

  .sh-values__list {
    gap: 10px 0;
  }

  .sh-values__list li {
    padding: 4px 12px;
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  .sh-values__list li::after {
    display: none;
  }

  .sh-featured {
    min-height: 320px;
    padding: 24px;
  }

  .sh-featured h3,
  a.sh-featured h3 {
    max-width: none;
    font-size: 24px;
  }

  .sh-about__meta span {
    border: 0;
    margin: 0 12px 8px 0;
    padding: 0;
  }

  .sh-cta__panel h2 {
    max-width: none;
  }

  .sh-cta__lead {
    max-width: none;
  }

  body.superhum-page .tj-primary-btn {
    font-size: 13px;
  }

  body.superhum-page .sh-btn-ghost {
    font-size: 13px;
    min-height: 50px;
  }

  body.superhum-page #tj-back-to-top {
    bottom: 16px !important;
    inset-inline-end: 16px !important;
  }
}

@media (max-width: 575px) {
  .sh-services .sh-service-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  body.superhum-page .hamburger-area {
    width: 100% !important;
  }

  body.superhum-page .hamburger_logo .superhum-logo__img--hamburger {
    max-width: 200px;
  }
}

/* Focus visible AAA */
body.superhum-page a:focus-visible,
body.superhum-page button:focus-visible,
body.superhum-page input:focus-visible {
  outline: 2px solid var(--sh-blue);
  outline-offset: 3px;
}
