/*
Theme Name:  Prosthesia
Theme URI:   https://sofines-software.fr
Description: Thème sur-mesure Prosthesia — orthopédie nouvelle génération. Compatible avec le plugin Prosthesia Blocks.
Version:     1.2.0
Author:      Sofines Software
Author URI:  https://sofines-software.fr
Text Domain: prosthesia
License:     Proprietary
*/

/* ─────────────────────────────────────────
   POLICES
───────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;600;700;800&family=Barlow+Condensed:wght@500;700;800&display=swap');


/* ─────────────────────────────────────────
   VARIABLES
───────────────────────────────────────── */
:root {
  --pros-blue-deep:   #0d2d6e;
  --pros-blue-royal:  #1a4ab5;
  --pros-blue-bright: #2563eb;
  --pros-blue-dark:   #1d4ed8;
  --pros-black-nav:   #0a163c;
  --pros-white:       #ffffff;
  --pros-white-90:    rgba(255,255,255,0.90);
  --pros-white-60:    rgba(255,255,255,0.60);
  --pros-white-35:    rgba(255,255,255,0.35);
  --pros-white-20:    rgba(255,255,255,0.12);
  --pros-white-08:    rgba(255,255,255,0.07);
  --pros-card-text:   #4a5680;
}


/* ─────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────── */
.pros-page *,
.pros-footer-wrap * {
  box-sizing: border-box;
}

.pros-page {
  background: var(--pros-blue-deep);
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  color: var(--pros-white);
}


/* ─────────────────────────────────────────
   LAYOUTS — GRILLES
───────────────────────────────────────── */

/* Grille 2 colonnes principale (hero) */
.pros-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
  position: relative;
}

/* Section alternée (missions) */
.pros-section {
  border-top: 1px solid var(--pros-white-20);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}

/* Colonne gauche */
.pros-hero-left,
.pros-section-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 68px;
  position: relative;
}
.pros-hero-left::after,
.pros-section-right::after {
  content: '';
  position: absolute;
  top: 0; right: -1px; bottom: 0;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent 5%,
    var(--pros-white-20) 30%,
    var(--pros-white-20) 70%,
    transparent 95%
  );
}

/* Colonne droite */
.pros-hero-right,
.pros-section-left {
  display: flex;
  flex-direction: column;
  padding: 52px 64px 52px 44px;
  gap: 16px;
  justify-content: center;
}

.pros-section-left {
  border-right: 1px solid var(--pros-white-20);
}


/* ─────────────────────────────────────────
   PILL / BADGE
───────────────────────────────────────── */
.pros-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pros-blue-bright);
  color: var(--pros-white);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  width: fit-content;
  margin-bottom: 28px;
  box-shadow: 0 4px 16px rgba(37,99,235,0.5);
}

.pros-pill.soft {
  background: rgba(37,99,235,0.2);
  box-shadow: none;
  color: rgba(255,255,255,0.85);
}

.pros-pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: white;
  animation: prosBlink 2s infinite;
}

@keyframes prosBlink {
  0%, 100% { opacity: .8; }
  50%       { opacity: .3; }
}


/* ─────────────────────────────────────────
   TYPOGRAPHIE
───────────────────────────────────────── */
.pros-title-light {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(26px, 2.8vw, 40px);
  font-weight: 300;
  color: var(--pros-white-90);
  display: block;
  line-height: 1.2;
}

.pros-title-bold {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(34px, 3.8vw, 56px);
  font-weight: 800;
  color: var(--pros-white);
  text-transform: uppercase;
  display: block;
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}

.pros-title-sub {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 300;
  color: var(--pros-white-60);
  display: block;
  line-height: 1.3;
  margin-bottom: 28px;
}

.pros-desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--pros-white-60);
  max-width: 420px;
  margin-bottom: 40px;
}

.pros-desc strong {
  color: var(--pros-white);
  font-weight: 600;
}


/* ─────────────────────────────────────────
   BOUTON
───────────────────────────────────────── */
.pros-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: var(--pros-white) !important;
  background: var(--pros-blue-bright);
  padding: 13px 28px;
  border-radius: 6px;
  width: fit-content;
  box-shadow: 0 4px 20px rgba(37,99,235,0.45);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  border: 1px solid var(--pros-blue-bright);
}

.pros-btn:hover {
  background: var(--pros-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,99,235,0.55);
}

.pros-btn svg {
  transition: transform 0.2s;
  flex-shrink: 0;
}

.pros-btn:hover svg {
  transform: translateX(3px);
}


/* ─────────────────────────────────────────
   STATS ROW
───────────────────────────────────────── */
.pros-stats {
  display: flex;
  gap: 28px;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--pros-white-20);
}

.pros-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pros-stat-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--pros-white);
  line-height: 1;
}

.pros-stat-val span { color: var(--pros-blue-bright); }

.pros-stat-lbl {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pros-white-60);
}


/* ─────────────────────────────────────────
   CARDS IMAGE + TEXTE (À propos / Missions)
───────────────────────────────────────── */
.pros-card {
  display: grid;
  grid-template-columns: 190px 1fr;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}

.pros-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 3px;
  background: var(--pros-blue-bright);
  opacity: 0;
  transition: opacity 0.25s;
  z-index: 2;
}

.pros-card:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 36px rgba(0,0,0,0.25);
}

.pros-card:hover::before { opacity: 1; }

.pros-card-img {
  width: 190px;
  height: 140px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.pros-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.pros-card:hover .pros-card-img img {
  transform: scale(1.06);
}

.pros-card-num {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--pros-blue-royal);
  color: white;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 3px 9px;
  border-radius: 3px;
  z-index: 1;
}

.pros-card-body {
  padding: 22px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  background: white;
}

.pros-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--pros-blue-deep);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0;
}

.pros-card-line {
  width: 28px;
  height: 2px;
  background: var(--pros-blue-bright);
  border-radius: 2px;
}

.pros-card-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--pros-card-text);
  margin: 0;
}


/* ─────────────────────────────────────────
   CARDS COLLABORATEURS
───────────────────────────────────────── */
.pros-collab-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 20px 22px;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
  position: relative;
  overflow: hidden;
}

.pros-collab-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 3px;
  background: var(--pros-blue-bright);
  opacity: 0;
  transition: opacity 0.25s;
  z-index: 1;
}

.pros-collab-card:hover {
  background: rgba(37,99,235,0.12);
  border-color: rgba(37,99,235,0.35);
  transform: translateX(5px);
}

.pros-collab-card:hover::before { opacity: 1; }

.pros-collab-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: rgba(37,99,235,0.2);
  border: 1px solid rgba(37,99,235,0.35);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.pros-collab-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--pros-white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.1;
  margin-bottom: 5px;
}

.pros-collab-desc {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--pros-white-60);
  margin: 0;
}


/* ─────────────────────────────────────────
   SPEC LIST (Missions)
───────────────────────────────────────── */
.pros-spec-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.pros-spec-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 13px;
  color: var(--pros-white-60);
  transition: border-color 0.2s;
}

.pros-spec-item:hover { border-color: rgba(37,99,235,0.4); }
.pros-spec-item svg { flex-shrink: 0; }


/* ─────────────────────────────────────────
   SECTION STATS / SYNERGIE (Collaborateurs)
───────────────────────────────────────── */
.pros-synergie {
  border-top: 1px solid var(--pros-white-20);
  background: rgba(37,99,235,0.06);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.pros-synergie-item {
  padding: 52px 48px;
  border-right: 1px solid var(--pros-white-20);
  transition: background 0.3s;
}

.pros-synergie-item:last-child { border-right: none; }
.pros-synergie-item:hover { background: rgba(255,255,255,0.04); }

.pros-synergie-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: var(--pros-blue-bright);
  line-height: 1;
  margin-bottom: 10px;
}

.pros-synergie-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--pros-white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.pros-synergie-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--pros-white-60);
}


/* ─────────────────────────────────────────
   CONTACT — INFOS
───────────────────────────────────────── */
.pros-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 44px;
}

.pros-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.pros-contact-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: rgba(37,99,235,0.15);
  border: 1px solid rgba(37,99,235,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.pros-contact-item:hover .pros-contact-icon {
  background: rgba(37,99,235,0.3);
}

.pros-contact-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 3px;
}

.pros-contact-value {
  font-size: 14px;
  font-weight: 400;
  color: var(--pros-white);
  text-decoration: none;
  transition: color 0.2s;
}

.pros-contact-value:hover { color: var(--pros-blue-bright); }

.pros-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.pros-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pros-white-60);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 5px 12px;
  border-radius: 4px;
}

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

.pros-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pros-social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--pros-white-60);
  text-decoration: none;
  padding: 9px 18px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  transition: all 0.2s;
}

.pros-social-link:hover {
  background: rgba(255,255,255,0.07);
  color: var(--pros-white);
  border-color: rgba(255,255,255,0.3);
}


/* ─────────────────────────────────────────
   CONTACT — PANNEAU DROIT
───────────────────────────────────────── */
.pros-contact-panel {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.pros-panel-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--pros-white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pros-panel-title::before {
  content: '';
  display: block;
  width: 4px;
  height: 22px;
  background: var(--pros-blue-bright);
  border-radius: 2px;
}

.pros-cta-block {
  background: rgba(37,99,235,0.1);
  border: 1px solid rgba(37,99,235,0.25);
  border-radius: 10px;
  padding: 28px;
}

.pros-cta-block-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--pros-white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.pros-cta-block-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--pros-white-60);
  margin-bottom: 20px;
}


/* ─────────────────────────────────────────
   CTA BANNER (bas de page Missions / Collab)
───────────────────────────────────────── */
.pros-cta {
  border-top: 1px solid var(--pros-white-20);
  background: rgba(37,99,235,0.08);
  padding: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.pros-cta-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 800;
  color: var(--pros-white);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 12px;
}

.pros-cta-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--pros-white-60);
  max-width: 480px;
}


/* ─────────────────────────────────────────
   LOCATION BADGE
───────────────────────────────────────── */
.pros-location {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--pros-white-20);
  font-size: 13px;
  color: var(--pros-white-60);
}

.pros-location strong { color: var(--pros-white); font-weight: 600; }


/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.pros-footer-wrap {
  background: var(--pros-black-nav);
  font-family: 'Barlow', sans-serif;
  border-top: 1px solid var(--pros-white-20);
}

.pros-footer-main {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 64px 68px 52px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.pros-footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 20px;
}

.pros-footer-logo-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pros-footer-logo-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.pros-footer-logo-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pros-white);
  line-height: 1;
  display: block;
}

.pros-footer-logo-tag {
  font-size: 8px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  line-height: 1;
  display: block;
  margin-top: 3px;
}

.pros-footer-tagline {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
  max-width: 260px;
  margin-bottom: 24px;
}

.pros-footer-social { display: flex; gap: 10px; }

.pros-footer-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 5px;
  transition: all 0.2s;
}

.pros-footer-social-btn:hover {
  background: rgba(255,255,255,0.07);
  color: var(--pros-white);
  border-color: rgba(255,255,255,0.25);
}

.pros-footer-col-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.pros-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.pros-footer-links a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pros-footer-links a::before {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--pros-blue-bright);
  opacity: 0;
  flex-shrink: 0;
  transition: opacity 0.2s;
}

.pros-footer-links a:hover { color: var(--pros-white); }
.pros-footer-links a:hover::before { opacity: 1; }

.pros-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.pros-footer-contact-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37,99,235,0.15);
  border-radius: 5px;
  margin-top: 1px;
}

.pros-footer-contact-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 3px;
}

.pros-footer-contact-value {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.pros-footer-contact-value:hover { color: var(--pros-white); }

.pros-footer-bottom {
  padding: 20px 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.pros-footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.05em;
}

.pros-footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pros-footer-bottom-links a {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}

.pros-footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

.pros-footer-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: inline-block;
}

/* Footer simple (dans les pages) */
.pros-footer {
  border-top: 1px solid var(--pros-white-20);
  background: rgba(10,22,60,0.5);
  padding: 24px 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pros-footer-brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.pros-footer-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.pros-footer-link:hover { color: var(--pros-white); }


/* ─────────────────────────────────────────
   ANIMATIONS
───────────────────────────────────────── */
@keyframes prosFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.pros-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.pros-reveal.visible {
  opacity: 1;
  transform: none;
}


/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 900px) {

  .pros-section { display: flex !important; flex-direction: column !important; }
  .pros-section .psb-text-col { order: -1 !important; }

  .pros-hero,
  .pros-section,
  .pros-synergie {
    grid-template-columns: 1fr !important;
  }

  .pros-hero-left,
  .pros-section-right {
    padding: 52px 24px 32px !important;
  }

  .pros-hero-left::after,
  .pros-section-right::after {
    display: none;
  }

  .pros-hero-right,
  .pros-section-left {
    padding: 0 24px 52px !important;
    border-right: none !important;
		align-items: center !important;
  }

  .pros-card {
    grid-template-columns: 1fr !important;
		width:300px;
  }

  .pros-card-img {
    width: 300px !important;
		height: 250px;
  }

  .pros-synergie-item {
    border-right: none !important;
    border-bottom: 1px solid var(--pros-white-20);
    padding: 32px 24px !important;
  }

  .pros-synergie-item:last-child {
    border-bottom: none;
  }

  .pros-cta {
    padding: 48px 24px !important;
    flex-direction: column;
  }

  .pros-footer,
  .pros-footer-bottom {
    padding: 20px 24px !important;
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .pros-footer-main {
    grid-template-columns: 1fr 1fr !important;
    padding: 48px 24px 36px !important;
    gap: 32px;
  }

  .pros-footer-brand-col {
    grid-column: 1 / -1;
  }

  .pros-contact-panel {
    padding: 28px 20px !important;
  }
}

@media (max-width: 520px) {
  .pros-footer-main {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 1024px) {
	.trp-shortcode-switcher {
		background: #1a202c
	}
}


/* ═══════════════════════════════════════════════
   HEADER, NAVIGATION, FONDATEUR
   (source : plugin Prosthesia Blocks)
   ═══════════════════════════════════════════════ */
/* ── Header ── */
.pros-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  height: 100px;
  background: rgba(10,22,60,0.90);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  padding: 0 68px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.pros-header.scrolled {
  background: rgba(10,22,60,0.98);
  box-shadow: 0 4px 32px rgba(0,0,0,0.35);
}
.pros-header-spacer { height: 100px; }
.pros-header-logo {
  display: flex; align-items: center;
  text-decoration: none; flex-shrink: 0; margin-right: auto;
}
.pros-header-logo-img {
  width: 150px; height: 100px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; flex-shrink: 0;
}
.pros-header-logo-img img { width: 100%; height: 100%; object-fit: contain; }
.pros-header-nav {
  display: flex; flex-direction: row; align-items: center;
  gap: 0; list-style: none; height: 100%;
}
.pros-header-nav li { display: flex; align-items: center; height: 100%; }
.pros-header-nav a {
  display: flex; align-items: center;
  height: 100%; padding: 0 18px;
  font-size: 12px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255,255,255,0.55);
  text-decoration: none; position: relative;
  transition: color 0.2s; white-space: nowrap;
}
.pros-header-nav a::after {
  content: ""; position: absolute;
  bottom: 0; left: 18px; right: 18px;
  height: 2px; background: #2563eb;
  border-radius: 2px 2px 0 0;
  transform: scaleX(0); transition: transform 0.22s ease;
}
.pros-header-nav a:hover { color: #fff; }
.pros-header-nav a:hover::after,
.pros-header-nav li.current-menu-item > a::after,
.pros-header-nav a.active::after { transform: scaleX(1); }
.pros-header-nav li.current-menu-item > a,
.pros-header-nav a.active { color: #fff; }
.pros-header-sep {
  width: 1px; height: 24px;
  background: rgba(255,255,255,0.12); margin: 0 16px; flex-shrink: 0;
}
.pros-header-lang { display: flex; flex-direction: row; align-items: center; gap: 2px; flex-shrink: 0; }
.pros-header-lang a {
  font-size: 10px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
  text-decoration: none; padding: 5px 10px; border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
.pros-header-lang a:hover { color: #fff; background: rgba(255,255,255,0.07); }
.pros-header-lang a.active {
  color: #fff; background: rgba(37,99,235,0.25);
  border: 1px solid rgba(37,99,235,0.4);
}
.pros-header-lang-dot {
  width: 3px; height: 3px; border-radius: 50%;
  background: rgba(255,255,255,0.18); display: inline-block;
}
.pros-header-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: #fff !important;
  text-decoration: none; padding: 9px 20px;
  background: #2563eb; border-radius: 5px; margin-left: 20px;
  flex-shrink: 0; box-shadow: 0 2px 12px rgba(37,99,235,0.4);
  transition: background 0.2s, transform 0.2s;
}
.pros-header-cta:hover { background: #1d4ed8; transform: translateY(-1px); }
.pros-header-burger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 36px; height: 36px; padding: 6px;
  cursor: pointer; background: none; border: none; margin-left: auto;
}
.pros-header-burger span {
  display: block; width: 100%; height: 2px;
  background: rgba(255,255,255,0.9); border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}
.pros-header-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.pros-header-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.pros-header-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.pros-mobile-menu {
  display: none;
  position: fixed; top: 100px; left: 0; right: 0;
  background: rgba(10,22,60,0.98);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding: 24px 28px 32px; z-index: 9998;
  transform: translateY(-8px); opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
  pointer-events: none;
}
.pros-mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; display: block; }
.pros-mobile-nav { list-style: none; display: flex; flex-direction: column; gap: 2px; margin-bottom: 20px; }
.pros-mobile-nav a {
  display: flex; align-items: center; gap: 10px; padding: 12px 0;
  font-size: 14px; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; color: rgba(255,255,255,0.55);
  text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s;
}
.pros-mobile-nav a:hover { color: #fff; }
.pros-mobile-nav a.active { color: #fff; }
.pros-mobile-nav-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: #2563eb; opacity: 0; flex-shrink: 0;
  transition: opacity 0.2s;
}
.pros-mobile-nav a:hover .pros-mobile-nav-dot,
.pros-mobile-nav a.active .pros-mobile-nav-dot { opacity: 1; }
.pros-mobile-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; }
.pros-mobile-lang { display: flex; align-items: center; gap: 6px; }
.pros-mobile-lang a {
  font-size: 10px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
  text-decoration: none; padding: 5px 10px; border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
.pros-mobile-lang a.active { color: #fff; background: rgba(37,99,235,0.25); border: 1px solid rgba(37,99,235,0.4); }
.pros-mobile-cta {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: #fff !important;
  text-decoration: none; padding: 9px 18px;
  background: #2563eb; border-radius: 5px;
  box-shadow: 0 2px 12px rgba(37,99,235,0.4);
}
@media (max-width: 960px) {
  .pros-header { padding: 0 24px !important; }
  .pros-header-nav,
  .pros-header-sep,
  .pros-header-lang,
  .pros-header-cta { display: none !important; }
  .pros-header-burger { display: flex !important; }
}

/* ── Bloc Fondateur ── */
.pros-founder {
  border-top: 1px solid rgba(255,255,255,0.12);
  display: grid;
  grid-template-columns: 520px 1fr;
  min-height: 560px;
  position: relative;
  background: #0d2d6e;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}
.pros-founder-photo {
  position: relative;
  overflow: hidden;
  padding-left: 68px;
}
.pros-founder-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
  filter: grayscale(15%) contrast(1.05);
  transition: transform 0.6s ease;
}
.pros-founder:hover .pros-founder-photo img { transform: scale(1.03); }
.pros-founder-photo::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, transparent 60%, #0d2d6e 100%),
    linear-gradient(to bottom, transparent 50%, rgba(13,45,110,0.75) 100%);
}
.pros-founder-badge {
  position: absolute; bottom: 32px; left: 100px; z-index: 2;
  display: flex; flex-direction: column; gap: 4px;
}
.pros-founder-name {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px; font-weight: 800;
  color: #fff; text-transform: uppercase;
  letter-spacing: 0.06em; line-height: 1;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.pros-founder-role {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: #2563eb;
  display: flex; align-items: center; gap: 6px;
  margin-top: 6px;
}
.pros-founder-role::before {
  content: "";
  width: 16px; height: 2px;
  background: #2563eb; border-radius: 2px; flex-shrink: 0;
}
.pros-founder-quote {
  padding: 72px 64px 72px 44px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
}
.pros-founder-quote::before {
  content: "\201C";
  position: absolute; top: 115px; left: 36px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 160px; font-weight: 800;
  color: rgba(37,99,235,0.10);
  line-height: 1; pointer-events: none; user-select: none;
  z-index: 0;
}
.pros-founder-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(37,99,235,0.2);
  border: 1px solid rgba(37,99,235,0.35);
  color: rgba(255,255,255,0.85);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 100px;
  width: fit-content; margin-bottom: 36px;
  position: relative; z-index: 1;
}
.pros-founder-text {
  font-family: "Barlow", sans-serif;
  font-size: clamp(17px, 1.6vw, 23px);
  font-weight: 300; font-style: italic;
  color: rgba(255,255,255,0.9);
  line-height: 1.75; max-width: 560px;
  margin-bottom: 40px; position: relative; z-index: 1;
}
.pros-founder-text strong { font-weight: 600; font-style: normal; color: #fff; }
.pros-founder-sig {
  display: flex; align-items: center; gap: 20px;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.12);
  position: relative; z-index: 1;
}
.pros-founder-sig-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  overflow: hidden; border: 2px solid rgba(37,99,235,0.5); flex-shrink: 0;
}
.pros-founder-sig-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; }
.pros-founder-sig-info { display: flex; flex-direction: column; gap: 3px; }
.pros-founder-sig-name {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 15px; font-weight: 700;
  color: #fff; text-transform: uppercase; letter-spacing: 0.08em;
}
.pros-founder-sig-title {
  font-size: 11px; font-weight: 400;
  color: rgba(255,255,255,0.6); letter-spacing: 0.06em;
}
.pros-founder-tags {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px;
  position: relative; z-index: 1;
}
.pros-founder-tag {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 5px 14px; border-radius: 4px;
  transition: border-color 0.2s, color 0.2s;
}
.pros-founder-tag:hover { border-color: rgba(37,99,235,0.5); color: #fff; }

@media (max-width: 900px) {
  .pros-founder { grid-template-columns: 1fr !important; }
  .pros-founder-photo { padding: 40px 28px 0; justify-content: center; }
  .pros-founder-photo-inner { max-width: 260px; }
  .pros-founder-quote { padding: 36px 24px 52px !important; }
  .pros-founder-quote::before { font-size: 90px !important; top: 78px !important; left: 16px !important; }
}


/* ═══════════════════════════════════════════════
   CSS COMPOSANTS PROSTHESIA BLOCKS
   (header, footer, sections, reveals, etc.)
   ═══════════════════════════════════════════════ */

@media (max-width: 900px) {
  .pros-section { display: flex !important; flex-direction: column !important; }
  .pros-section .psb-text-col { order: -1 !important; }
}

/* ── Header ── */
.pros-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  height: 100px;
  background: rgba(10,22,60,0.90);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  padding: 0 68px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.pros-header.scrolled {
  background: rgba(10,22,60,0.98);
  box-shadow: 0 4px 32px rgba(0,0,0,0.35);
}
.pros-header-spacer { height: 100px; }
.pros-header-logo {
  display: flex; align-items: center;
  text-decoration: none; flex-shrink: 0; margin-right: auto;
}
.pros-header-logo-img {
  width: 150px; height: 100px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; flex-shrink: 0;
}
.pros-header-logo-img img { width: 100%; height: 100%; object-fit: contain; }
.pros-header-nav {
  display: flex; flex-direction: row; align-items: center;
  gap: 0; list-style: none; height: 100%;
}
.pros-header-nav li { display: flex; align-items: center; height: 100%; }
.pros-header-nav a {
  display: flex; align-items: center;
  height: 100%; padding: 0 18px;
  font-size: 12px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255,255,255,0.55);
  text-decoration: none; position: relative;
  transition: color 0.2s; white-space: nowrap;
}
.pros-header-nav a::after {
  content: ""; position: absolute;
  bottom: 0; left: 18px; right: 18px;
  height: 2px; background: #2563eb;
  border-radius: 2px 2px 0 0;
  transform: scaleX(0); transition: transform 0.22s ease;
}
.pros-header-nav a:hover { color: #fff; }
.pros-header-nav a:hover::after,
.pros-header-nav li.current-menu-item > a::after,
.pros-header-nav a.active::after { transform: scaleX(1); }
.pros-header-nav li.current-menu-item > a,
.pros-header-nav a.active { color: #fff; }
.pros-header-sep {
  width: 1px; height: 24px;
  background: rgba(255,255,255,0.12); margin: 0 16px; flex-shrink: 0;
}
.pros-header-lang { display: flex; flex-direction: row; align-items: center; gap: 2px; flex-shrink: 0; }
.pros-header-lang a {
  font-size: 10px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
  text-decoration: none; padding: 5px 10px; border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
.pros-header-lang a:hover { color: #fff; background: rgba(255,255,255,0.07); }
.pros-header-lang a.active {
  color: #fff; background: rgba(37,99,235,0.25);
  border: 1px solid rgba(37,99,235,0.4);
}
.pros-header-lang-dot {
  width: 3px; height: 3px; border-radius: 50%;
  background: rgba(255,255,255,0.18); display: inline-block;
}
.pros-header-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: #fff !important;
  text-decoration: none; padding: 9px 20px;
  background: #2563eb; border-radius: 5px; margin-left: 20px;
  flex-shrink: 0; box-shadow: 0 2px 12px rgba(37,99,235,0.4);
  transition: background 0.2s, transform 0.2s;
}
.pros-header-cta:hover { background: #1d4ed8; transform: translateY(-1px); }
.pros-header-burger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 36px; height: 36px; padding: 6px;
  cursor: pointer; background: none; border: none; margin-left: auto;
}
.pros-header-burger span {
  display: block; width: 100%; height: 2px;
  background: rgba(255,255,255,0.9); border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}
.pros-header-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.pros-header-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.pros-header-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.pros-mobile-menu {
  display: none;
  position: fixed; top: 100px; left: 0; right: 0;
  background: rgba(10,22,60,0.98);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding: 24px 28px 32px; z-index: 9998;
  transform: translateY(-8px); opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
  pointer-events: none;
}
.pros-mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; display: block; }
.pros-mobile-nav { list-style: none; display: flex; flex-direction: column; gap: 2px; margin-bottom: 20px; }
.pros-mobile-nav a {
  display: flex; align-items: center; gap: 10px; padding: 12px 0;
  font-size: 14px; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; color: rgba(255,255,255,0.55);
  text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s;
}
.pros-mobile-nav a:hover { color: #fff; }
.pros-mobile-nav a.active { color: #fff; }
.pros-mobile-nav-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: #2563eb; opacity: 0; flex-shrink: 0;
  transition: opacity 0.2s;
}
.pros-mobile-nav a:hover .pros-mobile-nav-dot,
.pros-mobile-nav a.active .pros-mobile-nav-dot { opacity: 1; }
.pros-mobile-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; }
.pros-mobile-lang { display: flex; align-items: center; gap: 6px; }
.pros-mobile-lang a {
  font-size: 10px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
  text-decoration: none; padding: 5px 10px; border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
.pros-mobile-lang a.active { color: #fff; background: rgba(37,99,235,0.25); border: 1px solid rgba(37,99,235,0.4); }
.pros-mobile-cta {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: #fff !important;
  text-decoration: none; padding: 9px 18px;
  background: #2563eb; border-radius: 5px;
  box-shadow: 0 2px 12px rgba(37,99,235,0.4);
}
@media (max-width: 960px) {
  .pros-header { padding: 0 24px !important; }
  .pros-header-nav,
  .pros-header-sep,
  .pros-header-lang,
  .pros-header-cta { display: none !important; }
  .pros-header-burger { display: flex !important; }
}

/* ── Bloc Fondateur ── */
.pros-founder {
  border-top: 1px solid rgba(255,255,255,0.12);
  display: grid;
  grid-template-columns: 520px 1fr;
  min-height: 560px;
  position: relative;
  background: #0d2d6e;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}
.pros-founder-photo {
  position: relative;
  overflow: hidden;
  padding-left: 68px;
}
.pros-founder-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
  filter: grayscale(15%) contrast(1.05);
  transition: transform 0.6s ease;
}
.pros-founder:hover .pros-founder-photo img { transform: scale(1.03); }
.pros-founder-photo::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, transparent 60%, #0d2d6e 100%),
    linear-gradient(to bottom, transparent 50%, rgba(13,45,110,0.75) 100%);
}
.pros-founder-badge {
  position: absolute; bottom: 32px; left: 100px; z-index: 2;
  display: flex; flex-direction: column; gap: 4px;
}
.pros-founder-name {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px; font-weight: 800;
  color: #fff; text-transform: uppercase;
  letter-spacing: 0.06em; line-height: 1;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.pros-founder-role {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: #2563eb;
  display: flex; align-items: center; gap: 6px;
  margin-top: 6px;
}
.pros-founder-role::before {
  content: "";
  width: 16px; height: 2px;
  background: #2563eb; border-radius: 2px; flex-shrink: 0;
}
.pros-founder-quote {
  padding: 72px 64px 72px 44px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
}
.pros-founder-quote::before {
  content: "\201C";
  position: absolute; top: 115px; left: 36px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 160px; font-weight: 800;
  color: rgba(37,99,235,0.10);
  line-height: 1; pointer-events: none; user-select: none;
  z-index: 0;
}
.pros-founder-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(37,99,235,0.2);
  border: 1px solid rgba(37,99,235,0.35);
  color: rgba(255,255,255,0.85);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 100px;
  width: fit-content; margin-bottom: 36px;
  position: relative; z-index: 1;
}
.pros-founder-text {
  font-family: "Barlow", sans-serif;
  font-size: clamp(17px, 1.6vw, 23px);
  font-weight: 300; font-style: italic;
  color: rgba(255,255,255,0.9);
  line-height: 1.75; max-width: 560px;
  margin-bottom: 40px; position: relative; z-index: 1;
}
.pros-founder-text strong { font-weight: 600; font-style: normal; color: #fff; }
.pros-founder-sig {
  display: flex; align-items: center; gap: 20px;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.12);
  position: relative; z-index: 1;
}
.pros-founder-sig-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  overflow: hidden; border: 2px solid rgba(37,99,235,0.5); flex-shrink: 0;
}
.pros-founder-sig-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; }
.pros-founder-sig-info { display: flex; flex-direction: column; gap: 3px; }
.pros-founder-sig-name {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 15px; font-weight: 700;
  color: #fff; text-transform: uppercase; letter-spacing: 0.08em;
}
.pros-founder-sig-title {
  font-size: 11px; font-weight: 400;
  color: rgba(255,255,255,0.6); letter-spacing: 0.06em;
}
.pros-founder-tags {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px;
  position: relative; z-index: 1;
}
.pros-founder-tag {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 5px 14px; border-radius: 4px;
  transition: border-color 0.2s, color 0.2s;
}
.pros-founder-tag:hover { border-color: rgba(37,99,235,0.5); color: #fff; }

@media (max-width: 900px) {
  .pros-founder { grid-template-columns: 1fr !important; }
  .pros-founder-photo { padding: 40px 28px 0; justify-content: center; }
  .pros-founder-photo-inner { max-width: 260px; }
  .pros-founder-quote { padding: 36px 24px 52px !important; }
  .pros-founder-quote::before { font-size: 90px !important; top: 78px !important; left: 16px !important; }
}


/* ═══════════════════════════════════════════════
   BLOC HERO ACCUEIL (psb/pros-hero-mosaic)
   ═══════════════════════════════════════════════ */

.psb-hero-block {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--pros-blue-deep, #0d2d6e);
}

/* Image de fond */
.psb-hero-block .psb-hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.psb-hero-block .psb-hero-bg img {
  position: absolute;
  right: -4%; top: 50%;
  transform: translateY(-50%);
  height: 110%; width: auto;
  filter: brightness(0.85) saturate(0.8);
}
.psb-hero-block .psb-hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to right,
    #0d2d6e 0%,
    #0d2d6e 32%,
    rgba(13,45,110,0.9) 46%,
    rgba(13,45,110,0.45) 62%,
    rgba(13,45,110,0.1) 78%,
    transparent 100%
  );
}
.psb-hero-block .psb-hero-bg::before {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom,
    rgba(13,45,110,0.45) 0%, transparent 12%,
    transparent 88%, rgba(13,45,110,0.45) 100%
  );
}

/* Dot pattern */
.psb-hero-block .psb-hero-dots {
  position: absolute; inset: 0; z-index: 1;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  -webkit-mask-image: linear-gradient(to right, black 35%, transparent 65%);
  mask-image: linear-gradient(to right, black 35%, transparent 65%);
}

/* Contenu */
.psb-hero-block .psb-hero-content {
  position: relative; z-index: 3;
  padding: 80px 0 80px 7vw;
  max-width: 600px;
}

/* Eyebrow */
.psb-hero-block .psb-hero-eyebrow {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(16px, 2vw, 26px); font-weight: 300;
  text-transform: uppercase; letter-spacing: 0.03em;
  color: rgba(255,255,255,0.78);
  display: block; margin-bottom: 0;
}

/* Titre */
.psb-hero-block .psb-hero-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(68px, 10vw, 136px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 0.88;
  color: #fff;
  margin-bottom: 28px;
}
.psb-hero-block .psb-hero-title-blue {
  color: #2563eb;
  display: block;
}

/* Description */
.psb-hero-block .psb-hero-desc {
  font-size: 15px; font-weight: 300; line-height: 1.85;
  color: rgba(255,255,255,0.68);
  max-width: 420px; margin-bottom: 36px;
}
.psb-hero-block .psb-hero-desc strong { color: #fff; font-weight: 600; }

/* Boutons */
.psb-hero-block .psb-hero-actions {
  display: flex; flex-direction: column;
  gap: 12px; align-items: flex-start;
  margin-bottom: 48px;
}
.psb-hero-block .psb-hero-btn-outline {
  display: inline-flex; align-items: center;
  font-family: "Barlow", sans-serif;
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.85); text-decoration: none;
  padding: 13px 24px; border-radius: 6px;
  border: 1.5px solid rgba(255,255,255,0.28);
  transition: border-color 0.2s, background 0.2s;
}
.psb-hero-block .psb-hero-btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.07);
}

/* Stats */
.psb-hero-block .psb-hero-stats {
  display: flex;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 24px;
}
.psb-hero-block .psb-hero-stat {
  display: flex; flex-direction: column; gap: 5px;
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.psb-hero-block .psb-hero-stat:first-child { padding-left: 0; }
.psb-hero-block .psb-hero-stat:last-child  { border-right: none; }
.psb-hero-block .psb-hero-stat-val {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 30px; font-weight: 800; color: #fff; line-height: 1;
}
.psb-hero-block .psb-hero-stat-val span { color: #2563eb; font-size: 20px; }
.psb-hero-block .psb-hero-stat-lbl {
  font-size: 8px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
}

/* Responsive mobile */
@media (max-width: 768px) {
  .psb-hero-block { align-items: flex-end; min-height: 100svh; }
  .psb-hero-block .psb-hero-bg img {
    right: 0; left: 0; top: 0; bottom: 0;
    width: 100%; height: 100%;
    transform: none;
    object-fit: cover; object-position: center top;
    filter: brightness(0.5) saturate(0.7);
  }
  .psb-hero-block .psb-hero-bg::after {
    background: linear-gradient(to top,
      rgba(13,45,110,0.97) 0%,
      rgba(13,45,110,0.85) 35%,
      rgba(13,45,110,0.35) 65%,
      transparent 100%
    );
  }
  .psb-hero-block .psb-hero-bg::before { display: none; }
  .psb-hero-block .psb-hero-dots {
    -webkit-mask-image: none; mask-image: none; opacity: 0.4;
  }
  .psb-hero-block .psb-hero-content {
    padding: 32px 24px 48px; max-width: 100%;
  }
  .psb-hero-block .psb-hero-title { font-size: clamp(58px, 16vw, 82px); }
  .psb-hero-block .psb-hero-desc { max-width: 100%; }
  .psb-hero-block .psb-hero-actions { width: 100%; }
  .psb-hero-block .pros-btn,
  .psb-hero-block .psb-hero-btn-outline { width: 100%; justify-content: center; }
}
