/* ── PROFESSIONNELS DU SOCIAL — variables locales ────────── */
:root {
  --ps-night-2:     #162035;
  --ps-night-3:     #1E2D47;
  --ps-coral-lt:    #F07050;
  --ps-cream-2:     #EDE8DF;
  --ps-on-dark:     rgba(255,255,255,0.88);
  --ps-muted-dark:  rgba(255,255,255,0.50);
  --ps-on-light:    #1A1F2E;
  --ps-muted-light: #6B7280;
  --ps-r-sm: 6px; --ps-r-md: 12px; --ps-r-lg: 20px; --ps-r-xl: 28px;
  --ps-max: 1100px;
}

/* ── HERO ────────────────────────────────────────────────── */
.ps-hero {
  background: var(--night);
  min-height: 100vh; display: flex; align-items: center;
  padding: 120px 56px 96px;
  position: relative; overflow: hidden;
}
.ps-hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 60% at 78% 35%, rgba(224,90,58,0.1) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 5% 80%, rgba(30,45,71,0.7) 0%, transparent 60%);
}
.ps-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 72px 72px;
}
.ps-hero-inner {
  max-width: var(--ps-max); margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 420px; gap: 80px; align-items: center;
  position: relative; z-index: 1;
}
.ps-hero-inner > * { min-width: 0; }
.ps-hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(224,90,58,0.13); border: 0.5px solid rgba(224,90,58,0.3);
  color: var(--coral); border-radius: 40px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 16px; margin-bottom: 28px;
}
.ps-hero-tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--coral); }
.ps-h1 {
  font-family: var(--serif); font-size: clamp(44px, 5vw, 68px);
  font-weight: 500; line-height: 1.1; color: white;
  letter-spacing: -0.01em; margin-bottom: 24px;
}
.ps-h1 em { font-style: italic; color: var(--coral); }
.ps-hero-lead {
  font-size: 17px; font-weight: 300; color: var(--ps-muted-dark);
  line-height: 1.7; max-width: 500px; margin-bottom: 40px;
}
.ps-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 12px; }
.ps-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--coral); color: white;
  padding: 14px 26px; border-radius: var(--ps-r-sm);
  font-size: 14px; font-weight: 500; text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.ps-btn-primary:hover { background: var(--ps-coral-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(224,90,58,0.3); }
.ps-btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: white;
  padding: 14px 26px; border-radius: var(--ps-r-sm);
  border: 0.5px solid rgba(255,255,255,0.22);
  font-size: 14px; font-weight: 300; text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.ps-btn-ghost:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); }
.ps-hero-note { font-size: 12px; color: var(--ps-muted-dark); font-style: italic; }

/* Carte droite hero */
.ps-hero-card {
  background: var(--ps-night-2); border: 0.5px solid rgba(255,255,255,0.07);
  border-radius: var(--ps-r-lg); overflow: hidden;
}
.hc-header { background: rgba(224,90,58,0.1); border-bottom: 0.5px solid rgba(224,90,58,0.15); padding: 18px 24px; }
.hc-header-label { font-size: 10px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--coral); margin-bottom: 4px; }
.hc-header-title { font-size: 15px; font-weight: 500; color: white; }
.hc-body { padding: 20px 24px; display: flex; flex-direction: column; gap: 14px; }
.hc-row { display: flex; align-items: flex-start; gap: 12px; }
.hc-icon { width: 32px; height: 32px; border-radius: var(--ps-r-sm); background: rgba(255,255,255,0.05); border: 0.5px solid rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hc-icon svg { width: 14px; height: 14px; color: var(--coral); }
.hc-label { font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ps-muted-dark); margin-bottom: 2px; }
.hc-value { font-size: 13.5px; color: var(--ps-on-dark); font-weight: 300; line-height: 1.3; }
.hc-value strong { font-weight: 500; color: white; }
.hc-divider { height: 0.5px; background: rgba(255,255,255,0.06); }
.hc-structures { padding: 16px 24px; border-top: 0.5px solid rgba(255,255,255,0.07); }
.hc-structures-label { font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ps-muted-dark); margin-bottom: 10px; }
.hc-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.hc-tag { background: rgba(255,255,255,0.07); border: 0.5px solid rgba(255,255,255,0.1); border-radius: 40px; padding: 4px 11px; font-size: 12px; color: var(--ps-muted-dark); }

/* ── BASE ─────────────────────────────────────────────────── */
.ps-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 500; letter-spacing: 0.13em; text-transform: uppercase; color: var(--coral); margin-bottom: 16px; }
.ps-eyebrow::before { content: ''; width: 22px; height: 1px; background: var(--coral); display: block; }
.ps-title { font-family: var(--serif); font-size: clamp(34px, 3.8vw, 50px); font-weight: 500; line-height: 1.15; margin-bottom: 16px; }
.ps-title em { font-style: italic; color: var(--coral); }
.ps-lead { font-size: 15px; font-weight: 300; color: var(--ps-muted-light); line-height: 1.7; max-width: 560px; }

/* ── RECONNAISSANCE ──────────────────────────────────────── */
.ps-reconnaissance { background: var(--cream); padding: 96px 56px; }
.ps-reco-inner { max-width: var(--ps-max); margin: 0 auto; }
.ps-reco-header { margin-bottom: 56px; }
.ps-reco-miroir {
  background: white; border-radius: var(--ps-r-xl); overflow: hidden;
  border: 0.5px solid rgba(26,31,46,0.08);
  box-shadow: 0 16px 56px rgba(0,0,0,0.06);
  margin-bottom: 40px;
}
.ps-reco-miroir-header {
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--night);
  border-bottom: 0.5px solid rgba(255,255,255,0.07);
}
.ps-rm-col-header { padding: 16px 24px; font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ps-muted-dark); }
.ps-rm-col-header--right { border-left: 0.5px solid rgba(255,255,255,0.07); color: var(--coral); }
.ps-rm-rows { display: flex; flex-direction: column; }
.ps-rm-row { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 0.5px solid rgba(26,31,46,0.06); }
.ps-rm-row:last-child { border-bottom: none; }
.ps-rm-cell { padding: 18px 24px; font-size: 14px; font-weight: 300; color: var(--ps-muted-light); line-height: 1.5; border-right: 0.5px solid rgba(26,31,46,0.06); }
.ps-rm-cell:last-child { border-right: none; color: var(--ps-on-light); font-weight: 400; }
.ps-rm-cell:last-child strong { font-weight: 500; color: var(--coral); }
.ps-rm-cell:hover { background: rgba(224,90,58,0.02); }
.ps-reco-invite {
  background: var(--night); padding: 32px 40px;
  border-left: 3px solid rgba(224,90,58,0.4);
  border-radius: 0 var(--ps-r-lg) var(--ps-r-lg) 0;
  font-family: var(--serif); font-size: 20px; font-style: italic;
  font-weight: 400; color: var(--ps-on-dark); line-height: 1.55;
}

/* ── RÉALITÉS DU SOCIAL ──────────────────────────────────── */
.ps-realites { background: var(--ps-night-2); padding: 96px 56px; }
.ps-realites-inner { max-width: var(--ps-max); margin: 0 auto; }
.ps-realites-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.ps-rc-card {
  background: var(--ps-night-3); border: 0.5px solid rgba(255,255,255,0.07);
  border-radius: var(--ps-r-lg); padding: 32px 28px;
  transition: border-color 0.2s, transform 0.2s;
  position: relative; overflow: hidden;
}
.ps-rc-card:hover { border-color: rgba(224,90,58,0.25); transform: translateY(-3px); }
.ps-rc-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--coral), transparent); opacity: 0; transition: opacity 0.3s; }
.ps-rc-card:hover::before { opacity: 1; }
.ps-rc-icon { width: 42px; height: 42px; border-radius: var(--ps-r-md); background: rgba(224,90,58,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.ps-rc-icon svg { width: 19px; height: 19px; color: var(--coral); }
.ps-rc-title { font-size: 15px; font-weight: 500; color: white; margin-bottom: 10px; }
.ps-rc-desc { font-size: 13.5px; font-weight: 300; color: var(--ps-muted-dark); line-height: 1.6; }
.ps-realites-stat {
  background: var(--ps-night-3); border-radius: var(--ps-r-lg); padding: 32px 40px;
  display: grid; grid-template-columns: auto 1fr; gap: 32px; align-items: center;
  border: 0.5px solid rgba(255,255,255,0.07);
}
.ps-realites-stat > * { min-width: 0; }
.ps-rs-number { font-family: var(--serif); font-size: 72px; font-weight: 500; color: var(--coral); line-height: 1; }
.ps-rs-title { font-size: 18px; font-weight: 500; color: white; margin-bottom: 8px; }
.ps-rs-desc { font-size: 14px; font-weight: 300; color: var(--ps-muted-dark); line-height: 1.65; }

/* ── PUBLICS ─────────────────────────────────────────────── */
.ps-publics { background: var(--cream); padding: 96px 56px; }
.ps-publics-inner { max-width: var(--ps-max); margin: 0 auto; }
.ps-publics-header { margin-bottom: 52px; }
.ps-publics-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.ps-pub-card {
  background: white; border-radius: var(--ps-r-xl); overflow: hidden;
  border: 0.5px solid rgba(26,31,46,0.08);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.ps-pub-card:hover { transform: translateY(-3px); border-color: rgba(224,90,58,0.18); box-shadow: 0 10px 36px rgba(0,0,0,0.07); }
.ps-pub-header { padding: 26px 28px 18px; border-bottom: 0.5px solid rgba(26,31,46,0.07); }
.ps-pub-tag { font-size: 10px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--coral); margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.ps-pub-tag::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--coral); }
.ps-pub-title { font-family: var(--serif); font-size: 22px; font-weight: 500; color: var(--ps-on-light); margin-bottom: 8px; line-height: 1.2; }
.ps-pub-desc { font-size: 13.5px; font-weight: 300; color: var(--ps-muted-light); line-height: 1.6; }
.ps-pub-body { padding: 18px 28px 26px; }
.ps-pub-sit-label { font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ps-muted-light); margin-bottom: 10px; }
.ps-pub-sits { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }
.ps-pub-sit { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--ps-on-light); line-height: 1.4; }
.ps-pub-sit::before {
  content: ''; width: 14px; height: 14px; flex-shrink: 0; margin-top: 1px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Ccircle cx='7' cy='7' r='6' fill='%23E05A3A' opacity='.12'/%3E%3Cpath d='M4.5 7l2 2 3-3' stroke='%23E05A3A' stroke-width='1.3' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}
.ps-pub-link { display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px; font-weight: 500; color: var(--coral); text-decoration: none; transition: gap 0.2s; }
.ps-pub-link:hover { gap: 11px; }

/* ── FORMULES ────────────────────────────────────────────── */
.ps-formules { background: var(--night); padding: 96px 56px; }
.ps-formules-inner { max-width: var(--ps-max); margin: 0 auto; }
.ps-formules-header { margin-bottom: 56px; }
.ps-formules-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 32px; }
.ps-formule-card {
  background: var(--ps-night-2); border: 0.5px solid rgba(255,255,255,0.07);
  border-radius: var(--ps-r-xl); padding: 32px 28px;
  display: flex; flex-direction: column; gap: 16px;
  transition: border-color 0.2s, transform 0.2s;
}
.ps-formule-card:hover { border-color: rgba(224,90,58,0.25); transform: translateY(-3px); }
.ps-formule-num { font-family: var(--serif); font-size: 40px; font-weight: 400; color: rgba(224,90,58,0.2); line-height: 1; }
.ps-formule-icon { width: 42px; height: 42px; border-radius: var(--ps-r-md); background: rgba(224,90,58,0.1); display: flex; align-items: center; justify-content: center; }
.ps-formule-icon svg { width: 19px; height: 19px; color: var(--coral); }
.ps-formule-title { font-family: var(--serif); font-size: 22px; font-weight: 500; color: white; line-height: 1.2; }
.ps-formule-desc { font-size: 13.5px; font-weight: 300; color: var(--ps-muted-dark); line-height: 1.65; flex: 1; }
.ps-formule-details { display: flex; flex-direction: column; gap: 6px; padding-top: 14px; border-top: 0.5px solid rgba(255,255,255,0.07); }
.ps-formule-detail { display: flex; gap: 8px; font-size: 12.5px; color: var(--ps-muted-dark); line-height: 1.4; }
.ps-formule-detail-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--coral); flex-shrink: 0; margin-top: 7px; }
.ps-formule-btn { display: flex; align-items: center; justify-content: center; gap: 7px; background: var(--coral); color: white; padding: 12px; border-radius: var(--ps-r-sm); font-size: 13px; font-weight: 500; text-decoration: none; transition: background 0.2s; margin-top: 4px; }
.ps-formule-btn:hover { background: var(--ps-coral-lt); }
.ps-formule-btn-ghost { display: flex; align-items: center; justify-content: center; gap: 7px; background: transparent; color: var(--ps-muted-dark); padding: 11px; border-radius: var(--ps-r-sm); border: 0.5px solid rgba(255,255,255,0.12); font-size: 13px; font-weight: 300; text-decoration: none; transition: all 0.2s; }
.ps-formule-btn-ghost:hover { color: white; border-color: rgba(255,255,255,0.3); }
.ps-formules-surmesure {
  background: var(--ps-night-3); border-radius: var(--ps-r-lg); padding: 36px 40px;
  display: flex; align-items: center; gap: 40px; flex-wrap: wrap;
  border: 0.5px solid rgba(255,255,255,0.06);
}
.ps-sm-text { flex: 1; min-width: 260px; }
.ps-sm-label { font-size: 10px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--coral); margin-bottom: 8px; }
.ps-sm-title { font-family: var(--serif); font-size: 22px; font-weight: 500; color: white; margin-bottom: 8px; }
.ps-sm-desc { font-size: 14px; font-weight: 300; color: var(--ps-muted-dark); line-height: 1.6; }
.ps-sm-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── APPROCHE PÉDAGOGIQUE ────────────────────────────────── */
.ps-approche { background: var(--ps-cream-2); padding: 96px 56px; }
.ps-approche-inner { max-width: var(--ps-max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.ps-approche-inner > * { min-width: 0; }
.ps-appr-steps { display: flex; flex-direction: column; gap: 0; }
.ps-appr-step { display: flex; gap: 20px; }
.ps-appr-step-left { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; width: 44px; }
.ps-appr-dot { width: 44px; height: 44px; border-radius: 50%; background: white; border: 1.5px solid rgba(224,90,58,0.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; z-index: 1; }
.ps-appr-dot svg { width: 17px; height: 17px; color: var(--coral); }
.ps-appr-line { width: 1px; flex: 1; background: rgba(224,90,58,0.15); min-height: 20px; }
.ps-appr-step:last-child .ps-appr-line { display: none; }
.ps-appr-content { flex: 1; padding-bottom: 28px; padding-top: 8px; }
.ps-appr-step:last-child .ps-appr-content { padding-bottom: 0; }
.ps-appr-title { font-size: 15px; font-weight: 500; color: var(--ps-on-light); margin-bottom: 5px; }
.ps-appr-desc { font-size: 13.5px; font-weight: 300; color: var(--ps-muted-light); line-height: 1.6; }
.ps-appr-right { display: flex; flex-direction: column; gap: 14px; }
.ps-appr-card { background: white; border-radius: var(--ps-r-md); padding: 22px 24px; border: 0.5px solid rgba(26,31,46,0.08); transition: border-color 0.2s; }
.ps-appr-card:hover { border-color: rgba(224,90,58,0.2); }
.ps-appr-card-label { font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--coral); margin-bottom: 8px; }
.ps-appr-card-title { font-size: 14px; font-weight: 500; color: var(--ps-on-light); margin-bottom: 5px; }
.ps-appr-card-desc { font-size: 13px; font-weight: 300; color: var(--ps-muted-light); line-height: 1.55; }

/* ── TÉMOIGNAGES ─────────────────────────────────────────── */
.ps-temoignages { background: var(--night); padding: 96px 56px; }
.ps-testi-inner { max-width: var(--ps-max); margin: 0 auto; }
.ps-testi-header { margin-bottom: 52px; }
.ps-testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ps-testi-card { background: var(--ps-night-2); border: 0.5px solid rgba(255,255,255,0.07); border-radius: var(--ps-r-lg); padding: 28px; display: flex; flex-direction: column; gap: 14px; transition: border-color 0.2s, transform 0.2s; }
.ps-testi-card:hover { border-color: rgba(224,90,58,0.2); transform: translateY(-2px); }
.ps-testi-before { background: rgba(224,90,58,0.07); border-left: 2px solid rgba(224,90,58,0.3); border-radius: 0 var(--ps-r-sm) var(--ps-r-sm) 0; padding: 10px 14px; }
.ps-testi-before-label { font-size: 9.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--coral); font-weight: 500; margin-bottom: 4px; }
.ps-testi-before-text { font-size: 12.5px; color: var(--ps-muted-dark); font-style: italic; line-height: 1.5; }
.ps-testi-quote { font-family: var(--serif); font-size: 16.5px; font-style: italic; color: var(--ps-on-dark); line-height: 1.55; flex: 1; }
.ps-testi-author { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 0.5px solid rgba(255,255,255,0.07); }
.ps-testi-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--ps-night-3); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 14px; font-weight: 500; color: var(--coral); flex-shrink: 0; }
.ps-testi-stars { display: flex; gap: 3px; margin-bottom: 2px; }
.ps-testi-star { width: 11px; height: 11px; background: var(--coral); clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%); }
.ps-testi-name { font-size: 13px; font-weight: 500; color: white; }
.ps-testi-role { font-size: 12px; font-weight: 300; color: var(--ps-muted-dark); }

/* ── STRUCTURES ──────────────────────────────────────────── */
.ps-structures { background: white; padding: 96px 56px; }
.ps-structures-inner { max-width: var(--ps-max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.ps-structures-inner > * { min-width: 0; }
.ps-str-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 32px; }
.ps-str-item { display: flex; align-items: center; gap: 10px; padding: 11px 14px; background: var(--cream); border-radius: var(--ps-r-md); border: 0.5px solid rgba(26,31,46,0.07); font-size: 13.5px; font-weight: 300; color: var(--ps-on-light); }
.ps-str-item::before {
  content: ''; width: 14px; height: 14px; flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Ccircle cx='7' cy='7' r='6' fill='%23E05A3A' opacity='.12'/%3E%3Cpath d='M4.5 7l2 2 3-3' stroke='%23E05A3A' stroke-width='1.3' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}
.ps-str-right { display: flex; flex-direction: column; gap: 16px; }
.ps-str-info-card { background: var(--cream); border-radius: var(--ps-r-lg); padding: 24px 26px; border: 0.5px solid rgba(26,31,46,0.07); }
.ps-str-info-label { font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--coral); margin-bottom: 8px; }
.ps-str-info-title { font-size: 15px; font-weight: 500; color: var(--ps-on-light); margin-bottom: 6px; }
.ps-str-info-desc { font-size: 13.5px; font-weight: 300; color: var(--ps-muted-light); line-height: 1.55; }

/* ── LIEN PE ─────────────────────────────────────────────── */
.ps-pe-band {
  background: var(--ps-night-2); padding: 48px 56px;
  border-top: 0.5px solid rgba(255,255,255,0.07);
}
.ps-pe-band-inner {
  max-width: var(--ps-max); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.ps-pe-label { font-size: 10px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--coral); margin-bottom: 8px; }
.ps-pe-title { font-family: var(--serif); font-size: 22px; font-weight: 500; color: white; margin-bottom: 6px; }
.ps-pe-desc { font-size: 14px; font-weight: 300; color: var(--ps-muted-dark); line-height: 1.5; max-width: 560px; }
.ps-pe-btn { display: inline-flex; align-items: center; gap: 8px; background: var(--coral); color: white; padding: 13px 24px; border-radius: var(--ps-r-sm); font-size: 13.5px; font-weight: 500; text-decoration: none; transition: background 0.2s, transform 0.15s; white-space: nowrap; flex-shrink: 0; }
.ps-pe-btn:hover { background: var(--ps-coral-lt); transform: translateY(-1px); }

/* ── CTA FINAL ───────────────────────────────────────────── */
.ps-cta-final { background: var(--coral); padding: 96px 56px; text-align: center; position: relative; overflow: hidden; }
.ps-cta-final::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 80% at 50% 110%, rgba(0,0,0,0.18) 0%, transparent 70%); }
.ps-cta-inner { position: relative; max-width: 720px; margin: 0 auto; }
.ps-cta-eyebrow { font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-bottom: 18px; }
.ps-cta-title { font-family: var(--serif); font-size: clamp(38px, 5vw, 58px); font-weight: 500; color: white; line-height: 1.1; margin-bottom: 18px; }
.ps-cta-lead { font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.72); line-height: 1.65; margin-bottom: 40px; }
.ps-cta-dual { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.ps-cta-box { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); border-radius: var(--ps-r-lg); padding: 26px 24px; text-align: left; text-decoration: none; color: white; transition: background 0.2s, border-color 0.2s, transform 0.15s; display: block; }
.ps-cta-box:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.4); transform: translateY(-2px); }
.ps-cta-box-label { font-size: 10px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 6px; }
.ps-cta-box-title { font-family: var(--serif); font-size: 20px; font-weight: 500; color: white; margin-bottom: 6px; }
.ps-cta-box-desc { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.68); margin-bottom: 14px; line-height: 1.5; }
.ps-cta-box-link { font-size: 13px; font-weight: 500; color: white; }
.ps-cta-note { font-size: 12px; color: rgba(255,255,255,0.5); }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .ps-hero-inner, .ps-approche-inner, .ps-structures-inner { grid-template-columns: 1fr; }
  .ps-hero-card { max-width: 480px; }
  .ps-hero, .ps-reconnaissance, .ps-realites, .ps-publics,
  .ps-formules, .ps-approche, .ps-temoignages, .ps-structures,
  .ps-pe-band, .ps-cta-final { padding-left: 32px; padding-right: 32px; }
}
@media (max-width: 768px) {
  .ps-reco-miroir-header, .ps-rm-row { grid-template-columns: 1fr; }
  .ps-rm-col-header--right { display: none; }
  .ps-rm-cell:last-child { display: none; }
  .ps-realites-grid, .ps-publics-grid, .ps-formules-grid, .ps-testi-grid { grid-template-columns: 1fr; }
  .ps-str-list { grid-template-columns: 1fr; }
  .ps-cta-dual { grid-template-columns: 1fr; }
  .ps-realites-stat { grid-template-columns: 1fr; gap: 16px; }
  .ps-hero, .ps-reconnaissance, .ps-realites, .ps-publics,
  .ps-formules, .ps-approche, .ps-temoignages, .ps-structures,
  .ps-pe-band, .ps-cta-final { padding-left: 24px; padding-right: 24px; }
}
