/* ── PROTECTION DE L'ENFANCE — variables locales ─────────── */
:root {
  --pe-night-2:     #162035;
  --pe-night-3:     #1E2D47;
  --pe-coral-lt:    #F07050;
  --pe-on-dark:     rgba(255,255,255,0.88);
  --pe-muted-dark:  rgba(255,255,255,0.50);
  --pe-on-light:    #1A1F2E;
  --pe-muted-light: #6B7280;
  --pe-r-sm: 6px; --pe-r-md: 12px; --pe-r-lg: 20px; --pe-r-xl: 28px;
  --pe-max: 1100px;
}

/* ── HERO ────────────────────────────────────────────────── */
.pe-hero {
  background: var(--night);
  min-height: 100vh; display: flex; align-items: center;
  padding: 120px 56px 96px;
  position: relative; overflow: hidden;
}
.pe-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%);
}
.pe-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;
}
.pe-hero-inner {
  max-width: var(--pe-max); margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 420px; gap: 80px; align-items: center;
  position: relative; z-index: 1;
}
.pe-hero-inner > * { min-width: 0; }
.pe-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;
}
.pe-hero-tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--coral); }
.pe-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;
}
.pe-h1 em { font-style: italic; color: var(--coral); }
.pe-hero-lead {
  font-size: 17px; font-weight: 300; color: var(--pe-muted-dark);
  line-height: 1.7; max-width: 500px; margin-bottom: 40px;
}
.pe-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 12px; }
.pe-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--coral); color: white;
  padding: 14px 26px; border-radius: var(--pe-r-sm);
  font-size: 14px; font-weight: 500; text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.pe-btn-primary:hover { background: var(--pe-coral-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(224,90,58,0.3); }
.pe-btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: white;
  padding: 14px 26px; border-radius: var(--pe-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;
}
.pe-btn-ghost:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); }
.pe-hero-note { font-size: 12px; color: var(--pe-muted-dark); font-style: italic; }

/* Carte expertise (droite du hero) */
.pe-he-expertise {
  background: var(--pe-night-2); border: 0.5px solid rgba(255,255,255,0.07);
  border-radius: var(--pe-r-lg); overflow: hidden;
}
.pe-he-header {
  background: rgba(224,90,58,0.1); border-bottom: 0.5px solid rgba(224,90,58,0.15);
  padding: 18px 24px;
}
.pe-he-header-label { font-size: 10px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--coral); margin-bottom: 4px; }
.pe-he-header-title { font-size: 15px; font-weight: 500; color: white; }
.pe-he-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,0.06); }
.pe-he-stat { background: var(--pe-night-2); padding: 20px; }
.pe-he-stat-num { font-family: var(--serif); font-size: 36px; font-weight: 500; color: white; line-height: 1; margin-bottom: 4px; }
.pe-he-stat-num span { color: var(--coral); }
.pe-he-stat-label { font-size: 12px; font-weight: 300; color: var(--pe-muted-dark); line-height: 1.35; }
.pe-he-publics { padding: 20px 24px; border-top: 0.5px solid rgba(255,255,255,0.07); }
.pe-he-publics-label { font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--pe-muted-dark); margin-bottom: 10px; }
.pe-he-publics-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.pe-he-tag { background: rgba(255,255,255,0.07); border: 0.5px solid rgba(255,255,255,0.1); border-radius: 40px; padding: 5px 12px; font-size: 12px; color: var(--pe-muted-dark); }
.pe-he-promise {
  padding: 18px 24px; border-top: 0.5px solid rgba(255,255,255,0.07);
  font-family: var(--serif); font-size: 15px; font-style: italic;
  font-weight: 400; color: var(--pe-muted-dark); line-height: 1.5;
}
.pe-he-promise strong { color: var(--pe-on-dark); font-style: normal; font-weight: 500; }

/* ── SECTION BASE ─────────────────────────────────────────── */
.pe-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;
}
.pe-eyebrow::before { content: ''; width: 22px; height: 1px; background: var(--coral); display: block; }
.pe-title {
  font-family: var(--serif); font-size: clamp(34px, 3.8vw, 50px);
  font-weight: 500; line-height: 1.15; margin-bottom: 16px;
}
.pe-title em { font-style: italic; color: var(--coral); }
.pe-lead { font-size: 15px; font-weight: 300; color: var(--pe-muted-light); line-height: 1.7; max-width: 560px; }

/* ── RÉALITÉS PE ─────────────────────────────────────────── */
.pe-realites { background: var(--cream); padding: 96px 56px; }
.pe-realites-inner { max-width: var(--pe-max); margin: 0 auto; }
.pe-realites-header { margin-bottom: 56px; }
.pe-realites-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.pe-realite-card {
  background: white; border-radius: var(--pe-r-lg); padding: 32px 28px;
  border: 0.5px solid rgba(26,31,46,0.08);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  position: relative; overflow: hidden;
}
.pe-realite-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); border-color: rgba(224,90,58,0.18); }
.pe-realite-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--coral), transparent); opacity: 0; transition: opacity 0.3s; }
.pe-realite-card:hover::after { opacity: 1; }
.pe-rc-icon { width: 44px; height: 44px; border-radius: var(--pe-r-md); background: rgba(224,90,58,0.08); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.pe-rc-icon svg { width: 20px; height: 20px; color: var(--coral); }
.pe-rc-title { font-size: 16px; font-weight: 500; color: var(--pe-on-light); margin-bottom: 10px; }
.pe-rc-desc { font-size: 13.5px; font-weight: 300; color: var(--pe-muted-light); line-height: 1.65; }
.pe-realites-insight {
  background: var(--night); border-radius: var(--pe-r-lg); padding: 36px 44px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.pe-realites-insight > * { min-width: 0; }
.pe-ri-quote {
  font-family: var(--serif); font-size: 21px; font-style: italic;
  font-weight: 400; color: var(--pe-on-dark); line-height: 1.55;
  border-left: 3px solid rgba(224,90,58,0.4); padding-left: 24px;
}
.pe-ri-explication { font-size: 14px; font-weight: 300; color: var(--pe-muted-dark); line-height: 1.75; }
.pe-ri-explication strong { font-weight: 500; color: var(--pe-on-dark); }

/* ── POURQUOI PE ─────────────────────────────────────────── */
.pe-pourquoi { background: var(--pe-night-2); padding: 96px 56px; }
.pe-pourquoi-inner { max-width: var(--pe-max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 96px; align-items: start; }
.pe-pourquoi-inner > * { min-width: 0; }
.pe-pq-timeline { display: flex; flex-direction: column; gap: 0; }
.pe-pq-step { display: flex; gap: 20px; }
.pe-pq-left-col { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; width: 44px; }
.pe-pq-dot { width: 44px; height: 44px; border-radius: 50%; background: var(--pe-night-3); border: 1.5px solid rgba(224,90,58,0.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; position: relative; z-index: 1; }
.pe-pq-dot svg { width: 17px; height: 17px; color: var(--coral); }
.pe-pq-line { width: 1px; flex: 1; background: rgba(224,90,58,0.12); min-height: 20px; }
.pe-pq-step:last-child .pe-pq-line { display: none; }
.pe-pq-content { flex: 1; padding-bottom: 32px; padding-top: 8px; }
.pe-pq-step:last-child .pe-pq-content { padding-bottom: 0; }
.pe-pq-time { font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--coral); margin-bottom: 6px; }
.pe-pq-title { font-size: 15px; font-weight: 500; color: white; margin-bottom: 6px; }
.pe-pq-desc { font-size: 13.5px; font-weight: 300; color: var(--pe-muted-dark); line-height: 1.6; }
.pe-pq-right { display: flex; flex-direction: column; gap: 14px; }
.pe-pq-card { background: var(--pe-night-3); border: 0.5px solid rgba(255,255,255,0.07); border-radius: var(--pe-r-md); padding: 22px 24px; transition: border-color 0.2s; }
.pe-pq-card:hover { border-color: rgba(224,90,58,0.25); }
.pe-pq-card-label { font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--coral); margin-bottom: 8px; }
.pe-pq-card-text { font-size: 14px; font-weight: 300; color: var(--pe-muted-dark); line-height: 1.6; }
.pe-pq-card-text strong { font-weight: 500; color: var(--pe-on-dark); }

/* ── PUBLICS PAR MÉTIER ──────────────────────────────────── */
.pe-publics { background: var(--cream); padding: 96px 56px; }
.pe-publics-inner { max-width: var(--pe-max); margin: 0 auto; }
.pe-publics-header { margin-bottom: 52px; }
.pe-publics-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.pe-public-card {
  background: white; border-radius: var(--pe-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;
}
.pe-public-card:hover { transform: translateY(-3px); border-color: rgba(224,90,58,0.2); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.pe-pc-header { padding: 28px 30px 20px; border-bottom: 0.5px solid rgba(26,31,46,0.07); }
.pe-pc-tag { font-size: 10px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--coral); margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.pe-pc-tag::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--coral); }
.pe-pc-title { font-family: var(--serif); font-size: 24px; font-weight: 500; color: var(--pe-on-light); margin-bottom: 8px; line-height: 1.2; }
.pe-pc-desc { font-size: 14px; font-weight: 300; color: var(--pe-muted-light); line-height: 1.65; }
.pe-pc-body { padding: 20px 30px 28px; }
.pe-pc-situations-label { font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--pe-muted-light); margin-bottom: 10px; }
.pe-pc-situations { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.pe-pc-situation { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--pe-on-light); line-height: 1.4; }
.pe-pc-situation::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;
}
.pe-pc-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; }
.pe-pc-link:hover { gap: 11px; }

/* ── FORMATIONS DÉDIÉES ──────────────────────────────────── */
.pe-formations { background: var(--night); padding: 96px 56px; }
.pe-formations-inner { max-width: var(--pe-max); margin: 0 auto; }
.pe-formations-header { margin-bottom: 56px; }
.pe-formations-stack { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.pe-formation-card {
  background: var(--pe-night-2); border: 0.5px solid rgba(255,255,255,0.07);
  border-radius: var(--pe-r-lg); overflow: hidden;
  transition: border-color 0.25s, transform 0.2s;
}
.pe-formation-card:hover { border-color: rgba(224,90,58,0.28); transform: translateY(-2px); }
.pe-formation-card.pe-featured { border-color: rgba(224,90,58,0.25); position: relative; }
.pe-featured-badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--coral); color: white;
  font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 40px;
}
.pe-fc-grid { display: grid; grid-template-columns: 1fr 260px; }
.pe-fc-grid > * { min-width: 0; }
.pe-fc-main { padding: 36px; border-right: 0.5px solid rgba(255,255,255,0.06); }
.pe-fc-tag { font-size: 10px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--coral); margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.pe-fc-tag::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--coral); }
.pe-fc-title { font-family: var(--serif); font-size: 26px; font-weight: 500; color: white; line-height: 1.2; margin-bottom: 10px; }
.pe-fc-desc { font-size: 14px; font-weight: 300; color: var(--pe-muted-dark); line-height: 1.7; margin-bottom: 20px; max-width: 560px; }
.pe-fc-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.pe-fc-pill { background: rgba(255,255,255,0.07); border: 0.5px solid rgba(255,255,255,0.1); border-radius: 40px; padding: 4px 12px; font-size: 12px; color: var(--pe-muted-dark); }
.pe-fc-aside { padding: 36px 28px; display: flex; flex-direction: column; gap: 14px; }
.pe-fc-aside-label { font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--pe-muted-dark); margin-bottom: 4px; }
.pe-fc-aside-value { font-size: 13.5px; color: var(--pe-on-dark); font-weight: 300; }
.pe-fc-aside-value strong { font-weight: 500; color: white; }
.pe-fc-aside-sep { height: 0.5px; background: rgba(255,255,255,0.07); }
.pe-fc-aside-btn { display: flex; align-items: center; justify-content: center; background: var(--coral); color: white; padding: 11px; border-radius: var(--pe-r-sm); font-size: 13px; font-weight: 500; text-decoration: none; transition: background 0.2s; margin-top: 4px; }
.pe-fc-aside-btn:hover { background: var(--pe-coral-lt); }
.pe-fc-aside-btn-ghost { display: flex; align-items: center; justify-content: center; background: transparent; color: var(--pe-muted-dark); padding: 10px; border-radius: var(--pe-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; }
.pe-fc-aside-btn-ghost:hover { color: white; border-color: rgba(255,255,255,0.3); }
.pe-formations-autres { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 48px; }
.pe-autre-card { background: var(--pe-night-2); border: 0.5px solid rgba(255,255,255,0.07); border-radius: var(--pe-r-lg); padding: 28px 26px; display: flex; gap: 16px; align-items: flex-start; text-decoration: none; transition: border-color 0.2s, transform 0.15s; }
.pe-autre-card:hover { border-color: rgba(224,90,58,0.22); transform: translateY(-2px); }
.pe-autre-icon { width: 40px; height: 40px; border-radius: var(--pe-r-sm); background: rgba(224,90,58,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pe-autre-icon svg { width: 18px; height: 18px; color: var(--coral); }
.pe-autre-tag { font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--coral); margin-bottom: 6px; }
.pe-autre-title { font-size: 15px; font-weight: 500; color: white; margin-bottom: 4px; }
.pe-autre-sub { font-size: 13px; font-weight: 300; color: var(--pe-muted-dark); line-height: 1.45; }
.pe-autres-label { font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--pe-muted-dark); margin-bottom: 16px; }

/* ── TÉMOIGNAGES ─────────────────────────────────────────── */
.pe-temoignages { background: var(--cream2); padding: 96px 56px; }
.pe-testi-inner { max-width: var(--pe-max); margin: 0 auto; }
.pe-testi-header { margin-bottom: 56px; }
.pe-testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pe-testi-card { background: white; border-radius: var(--pe-r-lg); padding: 30px; border: 0.5px solid rgba(26,31,46,0.08); display: flex; flex-direction: column; gap: 16px; transition: border-color 0.2s, transform 0.2s; }
.pe-testi-card:hover { border-color: rgba(224,90,58,0.2); transform: translateY(-3px); }
.pe-testi-before { background: rgba(224,90,58,0.06); border-left: 2px solid rgba(224,90,58,0.28); border-radius: 0 var(--pe-r-sm) var(--pe-r-sm) 0; padding: 10px 14px; }
.pe-testi-before-label { font-size: 9.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--coral); font-weight: 500; margin-bottom: 4px; }
.pe-testi-before-text { font-size: 12.5px; color: var(--pe-muted-light); font-style: italic; line-height: 1.5; }
.pe-testi-quote { font-family: var(--serif); font-size: 17px; font-style: italic; color: var(--pe-on-light); line-height: 1.55; flex: 1; }
.pe-testi-author { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 0.5px solid rgba(26,31,46,0.08); }
.pe-testi-avatar { width: 36px; height: 36px; border-radius: 50%; background: rgba(224,90,58,0.1); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 14px; font-weight: 500; color: var(--coral); flex-shrink: 0; }
.pe-testi-name { font-size: 13px; font-weight: 500; color: var(--pe-on-light); }
.pe-testi-role { font-size: 12px; font-weight: 300; color: var(--pe-muted-light); }
.pe-testi-stars { display: flex; gap: 3px; margin-bottom: 4px; }
.pe-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%); }

/* ── INSTITUTIONS ────────────────────────────────────────── */
.pe-institutions { background: white; padding: 96px 56px; }
.pe-institutions-inner { max-width: var(--pe-max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.pe-institutions-inner > * { min-width: 0; }
.pe-inst-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.pe-inst-item { display: flex; align-items: center; gap: 14px; padding: 14px 16px; background: var(--cream); border-radius: var(--pe-r-md); border: 0.5px solid rgba(26,31,46,0.07); font-size: 14px; font-weight: 300; color: var(--pe-on-light); }
.pe-inst-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;
}
.pe-inst-right { display: flex; flex-direction: column; gap: 16px; }
.pe-inst-card { background: var(--cream); border-radius: var(--pe-r-lg); padding: 24px 26px; border: 0.5px solid rgba(26,31,46,0.07); }
.pe-inst-card-label { font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--coral); margin-bottom: 8px; }
.pe-inst-card-title { font-size: 15px; font-weight: 500; color: var(--pe-on-light); margin-bottom: 6px; }
.pe-inst-card-desc { font-size: 13.5px; font-weight: 300; color: var(--pe-muted-light); line-height: 1.55; }

/* ── CTA FINAL ───────────────────────────────────────────── */
.pe-cta-final { background: var(--coral); padding: 96px 56px; text-align: center; position: relative; overflow: hidden; }
.pe-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%); }
.pe-cta-wrap { position: relative; max-width: 720px; margin: 0 auto; }
.pe-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; }
.pe-cta-title { font-family: var(--serif); font-size: clamp(38px, 5vw, 58px); font-weight: 500; color: white; line-height: 1.1; margin-bottom: 18px; }
.pe-cta-lead { font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.72); line-height: 1.65; margin-bottom: 40px; }
.pe-cta-dual { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.pe-cta-box { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); border-radius: var(--pe-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; }
.pe-cta-box:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.4); transform: translateY(-2px); }
.pe-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; }
.pe-cta-box-title { font-family: var(--serif); font-size: 20px; font-weight: 500; color: white; margin-bottom: 6px; }
.pe-cta-box-desc { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.68); margin-bottom: 14px; line-height: 1.5; }
.pe-cta-box-link { font-size: 13px; font-weight: 500; color: white; }
.pe-cta-note { font-size: 12px; color: rgba(255,255,255,0.5); }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .pe-hero-inner, .pe-pourquoi-inner, .pe-institutions-inner { grid-template-columns: 1fr; }
  .pe-he-expertise { max-width: 480px; }
  .pe-realites-insight { grid-template-columns: 1fr; gap: 28px; }
  .pe-fc-grid { grid-template-columns: 1fr; }
  .pe-fc-aside { display: none; }
  .pe-hero, .pe-realites, .pe-pourquoi, .pe-publics,
  .pe-formations, .pe-temoignages, .pe-institutions, .pe-cta-final { padding-left: 32px; padding-right: 32px; }
}
@media (max-width: 768px) {
  .pe-realites-grid, .pe-publics-grid, .pe-testi-grid, .pe-formations-autres { grid-template-columns: 1fr; }
  .pe-cta-dual { grid-template-columns: 1fr; }
  .pe-hero, .pe-realites, .pe-pourquoi, .pe-publics,
  .pe-formations, .pe-temoignages, .pe-institutions, .pe-cta-final { padding-left: 24px; padding-right: 24px; }
}
