/* =============================================================================
   PARAFLOW — INNER PAGES
   Composants partagés + styles spécifiques par page
   ============================================================================= */

/* ── SHARED: BREADCRUMB ──────────────────────────────────────────────────────── */

.pf-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--pf-font-body);
  font-size: 13px;
  color: var(--pf-grey);
  margin-bottom: 24px;
}

.pf-breadcrumb a {
  color: var(--pf-grey);
  text-decoration: none;
  transition: color 0.2s;
}

.pf-breadcrumb a:hover { color: var(--pf-blue); }

/* ── SHARED: BADGE LIGHT (sur fond sombre) ───────────────────────────────────── */

.pf-badge--light {
  color: #fff;
  text-decoration-color: rgba(255, 255, 255, 0.4);
  margin-bottom: 24px;
}

.pf-badge-dot--light { background: #fff; }

/* ── SHARED: STATS STRIP ─────────────────────────────────────────────────────── */

.pf-stats-strip {
  background: var(--pf-blue-deep);
  padding: 64px 56px;
}

.pf-stats-strip-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pf-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 48px;
  flex: 1;
}

.pf-stat-num {
  font-family: var(--pf-font-head);
  font-weight: 900;
  font-size: 56px;
  color: #fff;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.pf-stat-label {
  font-family: var(--pf-font-body);
  font-size: 14px;
  color: var(--pf-blue-mid);
  line-height: 1.4;
}

.pf-stat-sep {
  width: 1px;
  height: 56px;
  background: rgba(179, 196, 245, 0.25);
  flex-shrink: 0;
}

/* Surcharge : page À propos — stat item plus large */
.pf-about .pf-stat-item { padding: 0 56px; }

/* Surcharge : page Services — padding différent */
.pf-services .pf-stats-strip { padding: 80px 56px; }

/* ── SHARED: FAQ ACCORDION (aligne sur la home) ───────────────────────────── */

.pf-faq-list {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 62, 211, 0.08);
}

.pf-faq-item {
  border-bottom: 1px solid rgba(0, 62, 211, 0.08);
  transition: background 0.4s ease;
  background: #fff;
}
.pf-faq-item:last-child { border-bottom: none; }
.pf-faq-item.open { background: var(--pf-blue-pale); }

.pf-faq-list .pf-faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 28px;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}

.pf-faq-list .pf-faq-btn:focus-visible {
  outline: 2px solid var(--pf-blue);
  outline-offset: -2px;
}

.pf-faq-q {
  font-family: var(--pf-font-head);
  font-weight: 700;
  font-size: 16px;
  color: var(--pf-black);
  line-height: 1.4;
  transition: color 0.3s;
  flex: 1;
  min-width: 0;
}

.pf-faq-item.open .pf-faq-q { color: var(--pf-blue); }

.pf-faq-icon {
  font-family: var(--pf-font-body);
  font-size: 22px;
  font-weight: 300;
  color: var(--pf-blue);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--pf-blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s ease, background 0.3s, color 0.3s;
  line-height: 1;
}

.pf-faq-item.open .pf-faq-icon {
  transform: rotate(45deg);
  background: var(--pf-blue);
  color: #fff;
}

.pf-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0 28px;
}

.pf-faq-item.open .pf-faq-answer {
  max-height: 600px;
  padding: 0 28px 22px;
}

.pf-faq-answer p {
  font-family: var(--pf-font-body);
  font-size: 15px;
  color: #4a4a4a;
  line-height: 1.75;
  margin: 0;
}

@media (max-width: 768px) {
  .pf-faq-list .pf-faq-btn { padding: 18px 16px; gap: 12px; align-items: flex-start; }
  .pf-faq-q { font-size: 14px; flex: 1; min-width: 0; white-space: normal; word-break: break-word; }
  .pf-faq-icon { width: 24px; height: 24px; font-size: 18px; flex-shrink: 0; margin-top: 1px; }
  .pf-faq-answer { padding: 0 16px; }
  .pf-faq-item.open .pf-faq-answer { padding: 0 16px 18px; }
}

/* ── SHARED: TÉMOIGNAGES (section + grille + cartes) ─────────────────────────── */

.pf-testi-section {
  padding: 80px 56px;
  background: var(--pf-cream);
}

.pf-testi-section-inner {
  max-width: 1440px;
  margin: 0 auto;
}

.pf-testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 40px 0 32px;
}

.pf-testi-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  border: 0.5px solid var(--pf-blue-mid);
}

.pf-testi-stars {
  font-size: 18px;
  color: var(--pf-blue);
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.pf-testi-quote {
  font-family: var(--pf-font-body);
  font-size: 16px;
  font-style: italic;
  color: var(--pf-black);
  line-height: 1.7;
  margin-bottom: 20px;
  border: none;
  padding: 0;
}

.pf-testi-author {
  font-family: var(--pf-font-body);
  font-size: 14px;
  color: var(--pf-grey);
  font-style: normal;
}

/* ── SHARED: TÉMOIGNAGES — VARIANTE SPLIT (texte gauche + visuel droite) ─────── */

.pf-testi-section--split {
  padding: 100px 56px;
  background: var(--pf-cream);
  position: relative;
  overflow: hidden;
}

.pf-testi-section--split .pf-testi-section-inner {
  max-width: 1280px;
}

.pf-testi-split {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 64px;
  align-items: stretch;
}

.pf-testi-split-content { display: flex; flex-direction: column; }

.pf-testi-section--split .pf-section-label { margin-bottom: 14px; }

.pf-testi-section--split .pf-troyes-h2 {
  margin: 0 0 18px;
  text-align: left;
}

.pf-italic-accent {
  color: var(--pf-blue);
  font-style: italic;
  font-weight: 600;
}

.pf-testi-split-intro {
  font-family: var(--pf-font-body);
  font-size: 16px;
  color: var(--pf-grey);
  line-height: 1.6;
  margin: 0 0 32px;
  max-width: 540px;
}

.pf-testi-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Cards refondues : fond blanc, accent latéral bleu, meilleure hiérarchie */
.pf-testi-card--v2 {
  position: relative;
  background: #fff;
  border: 1px solid rgba(0, 62, 211, 0.08);
  border-radius: 18px;
  padding: 28px 32px 26px 36px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 8px 24px -12px rgba(0, 62, 211, 0.10);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.pf-testi-card--v2::before {
  content: "";
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 0;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: linear-gradient(180deg, var(--pf-blue) 0%, rgba(0, 62, 211, 0.3) 100%);
}

.pf-testi-card--v2:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 62, 211, 0.18);
  box-shadow: 0 2px 4px rgba(15, 23, 42, 0.04), 0 16px 32px -16px rgba(0, 62, 211, 0.18);
}

.pf-testi-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.pf-testi-card--v2 .pf-testi-stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: #F5A524;
  margin: 0;
  letter-spacing: 0;
}

.pf-testi-source {
  font-family: var(--pf-font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--pf-grey);
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.pf-testi-source::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #34A853;
  display: inline-block;
}

.pf-testi-card--v2 .pf-testi-quote {
  font-family: var(--pf-font-body);
  font-size: 15.5px;
  font-style: normal;
  font-weight: 400;
  color: var(--pf-black);
  line-height: 1.65;
  margin: 0 0 24px;
  border: none;
  padding: 0;
}

.pf-testi-card--v2 .pf-testi-quote::before {
  content: "\201C";
  display: block;
  font-family: var(--pf-font-head);
  font-size: 44px;
  line-height: 0.7;
  color: var(--pf-blue);
  opacity: 0.28;
  margin: 0 0 0 -2px;
  font-weight: 700;
}

.pf-testi-card--v2 .pf-testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  font-style: normal;
}

.pf-testi-avatar {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pf-blue) 0%, var(--pf-blue-deep) 100%);
  color: #fff;
  font-family: var(--pf-font-head);
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
  overflow: hidden;
}

.pf-testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pf-testi-author-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.pf-testi-author-text strong {
  font-family: var(--pf-font-body);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--pf-black);
}

.pf-testi-author-role {
  font-family: var(--pf-font-body);
  font-size: 13px;
  color: var(--pf-grey);
  margin-top: 1px;
}

/* Visuel : image client + badge note Google flottant */
.pf-testi-split-visual {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: stretch;
}

.pf-testi-visual-frame {
  position: relative;
  width: 100%;
  flex: 1 1 auto;
  min-height: 540px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(0, 62, 211, 0.35),
              0 12px 24px -12px rgba(15, 23, 42, 0.15);
  background: var(--pf-cream);
}

.pf-testi-visual-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 62, 211, 0) 50%, rgba(0, 62, 211, 0.08) 100%);
  pointer-events: none;
}

.pf-testi-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.pf-testi-visual-badge {
  position: absolute;
  bottom: 22px;
  left: 22px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12), 0 2px 4px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 132px;
}

.pf-testi-visual-badge-num {
  font-family: var(--pf-font-head);
  font-weight: 800;
  font-size: 26px;
  line-height: 1;
  color: var(--pf-black);
  letter-spacing: -0.02em;
}

.pf-testi-visual-badge-stars {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  color: #F5A524;
  margin-top: 2px;
}

.pf-testi-visual-badge-label {
  font-family: var(--pf-font-body);
  font-size: 11.5px;
  color: var(--pf-grey);
  letter-spacing: 0.01em;
  margin-top: 2px;
}

/* Tablette : stack avant mobile pour eviter colonnes trop serrees */
@media (max-width: 980px) {
  .pf-testi-section--split { padding: 80px 32px; }
  .pf-testi-split { grid-template-columns: 1fr; gap: 48px; }
  .pf-testi-visual-frame {
    aspect-ratio: 16 / 10;
    min-height: 0;
    max-width: 560px;
    margin: 0 auto;
  }
}

/* ── SHARED: CTA DARK FINAL ──────────────────────────────────────────────────── */

.pf-cta-dark {
  padding: 120px 56px;
  background: var(--pf-blue-deep);
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Filigrane architectural partage (sauf Troyes qui a son propre fragment) */
.pf-cta-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url('../img/hero/hero-architecture-1280.webp');
  background-size: cover;
  background-position: center right;
  mix-blend-mode: screen;
  opacity: 0.18;
  -webkit-mask-image: radial-gradient(ellipse 80% 100% at 100% 50%, black 0%, transparent 75%);
  mask-image: radial-gradient(ellipse 80% 100% at 100% 50%, black 0%, transparent 75%);
}

/* Sur Troyes le filigrane est deja gere par .pf-cta-dark-accent : on neutralise */
.pf-troyes .pf-cta-dark::before { display: none; }

.pf-cta-dark-inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 2;
}

/* Fragment d'image architecturale (echo visuel avec le hero, top-left) */
.pf-cta-dark-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 65%;
  height: 55%;
  z-index: 1;
  pointer-events: none;
}

.pf-cta-dark-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  /* Blend mode screen : eclaircit le bleu deep avec les blancs de l'image */
  mix-blend-mode: screen;
  opacity: 0.35;
  display: block;
  /* Mask radial : image visible au coin haut-gauche, fond progressivement vers la droite/bas */
  -webkit-mask-image: radial-gradient(ellipse 100% 100% at 0% 0%, black 0%, rgba(0,0,0,0.6) 30%, transparent 85%);
  mask-image: radial-gradient(ellipse 100% 100% at 0% 0%, black 0%, rgba(0,0,0,0.6) 30%, transparent 85%);
}

.pf-cta-dark-title {
  font-family: var(--pf-font-head);
  font-weight: 800;
  font-size: 48px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #fff;
}

.pf-cta-dark-sub {
  font-family: var(--pf-font-body);
  font-size: 18px;
  color: var(--pf-blue-mid);
  line-height: 1.6;
}

.pf-cta-dark-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--pf-blue-deep);
  font-family: var(--pf-font-head);
  font-weight: 700;
  font-size: 16px;
  padding: 16px 36px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.pf-cta-dark-btn:hover {
  background: rgba(255, 255, 255, 0.92);
}

/* Paragraphe wrapper "ou : <a>...</a>" sur CTA fond bleu */
.pf-cta-dark-email {
  font-family: var(--pf-font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* Lien email sur fond bleu : harmonisé avec pf-finalcta-btn-secondary (home) */
body a.pf-cta-dark-email,
body .pf-cta-dark-emaillink {
  display: inline-block;
  font-family: var(--pf-font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  padding-left: 4px;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: color 0.2s;
}

body a.pf-cta-dark-email:hover,
body a.pf-cta-dark-email:focus,
body .pf-cta-dark-emaillink:hover,
body .pf-cta-dark-emaillink:focus { color: rgba(255, 255, 255, 0.9); }

.pf-cta-dark-reassurance {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  font-family: var(--pf-font-body);
  font-size: 13px;
  color: var(--pf-blue-mid);
}

.pf-cta-dark-reassurance span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* =============================================================================
   PAGE : À PROPOS (.pf-about)
   ============================================================================= */

/* ── Typographie ─────────────────────────────────────────────────────────────── */

.pf-about .pf-about-h2 {
  font-family: var(--pf-font-head);
  font-weight: 700;
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--pf-black);
  margin-bottom: 24px;
}

.pf-about .pf-about-h2--center { text-align: center; }
.pf-about .pf-about-h2--white { color: #fff; }

.pf-about .pf-about-text {
  font-family: var(--pf-font-body);
  font-size: 17px;
  color: var(--pf-grey);
  line-height: 1.7;
  margin-bottom: 16px;
}

.pf-about .pf-about-text--intro { max-width: 680px; }

/* ── Section 01 : Hero ───────────────────────────────────────────────────────── */

.pf-about .pf-about-hero {
  padding: 120px 56px;
  background: #fff;
}

.pf-about .pf-about-hero-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 80px;
  align-items: center;
}

.pf-about .pf-about-hero-photo-wrap { position: relative; }

.pf-about .pf-about-hero-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  /* Fondu doux : moins opaque sur le bord gauche, fusionne avec la page */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.3) 8%, black 28%, black 100%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.3) 8%, black 28%, black 100%);
}

.pf-about .pf-about-hero-badge {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  border-radius: 8px;
  padding: 10px 20px;
  font-family: var(--pf-font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--pf-grey);
  white-space: nowrap;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.pf-about .pf-about-hero-text-col { display: flex; flex-direction: column; }

.pf-about .pf-about-h1 {
  font-family: var(--pf-font-head);
  font-weight: 700;
  font-size: 56px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--pf-black);
  margin: 20px 0 24px;
}

.pf-about .pf-about-accroche {
  font-family: var(--pf-font-body);
  font-size: 20px;
  color: var(--pf-black);
  line-height: 1.6;
  margin-bottom: 20px;
}

.pf-about .pf-about-intro {
  font-family: var(--pf-font-body);
  font-size: 17px;
  color: var(--pf-grey);
  line-height: 1.7;
  margin-bottom: 36px;
}

.pf-about .pf-about-hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── Section 03 : Parcours ───────────────────────────────────────────────────── */

.pf-about .pf-about-parcours {
  padding: 120px 56px;
  background: #fff;
}

.pf-about .pf-about-parcours-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.pf-about .pf-about-step {
  padding-left: 24px;
  border-left: 3px solid var(--pf-blue);
  margin-bottom: 40px;
}

.pf-about .pf-about-step:last-child { margin-bottom: 0; }

.pf-about .pf-about-step-label {
  display: block;
  font-family: var(--pf-font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pf-blue);
  margin-bottom: 8px;
}

.pf-about .pf-about-step-title {
  font-family: var(--pf-font-head);
  font-weight: 700;
  font-size: 20px;
  color: var(--pf-black);
  margin-bottom: 10px;
}

.pf-about .pf-about-step-text {
  font-family: var(--pf-font-body);
  font-size: 15px;
  color: var(--pf-grey);
  line-height: 1.7;
}

/* ── Section 04 : Différenciateurs ──────────────────────────────────────────── */

.pf-about .pf-about-diff {
  padding: 100px 56px;
  background: var(--pf-cream);
}

.pf-about .pf-about-diff-inner {
  max-width: 1440px;
  margin: 0 auto;
  text-align: center;
}

.pf-about .pf-about-diff-inner > .pf-section-label { margin-bottom: 16px; }

.pf-about .pf-about-diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
  text-align: left;
}

.pf-about .pf-about-diff-card {
  background: #fff;
  border: 0.5px solid var(--pf-blue-mid);
  border-radius: 16px;
  padding: 28px;
}

.pf-about .pf-about-diff-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--pf-blue-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.pf-about .pf-about-diff-title {
  font-family: var(--pf-font-head);
  font-weight: 600;
  font-size: 18px;
  color: var(--pf-black);
  margin-bottom: 12px;
  line-height: 1.3;
}

.pf-about .pf-about-diff-text {
  font-family: var(--pf-font-body);
  font-size: 15px;
  color: var(--pf-grey);
  line-height: 1.7;
}

/* ── Section 05 : Clients idéaux ─────────────────────────────────────────────── */

.pf-about .pf-about-clients {
  padding: 100px 56px;
  background: #fff;
}

.pf-about .pf-about-clients-inner {
  max-width: 860px;
  margin: 0 auto;
}

.pf-about .pf-about-profiles {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 36px 0;
}

.pf-about .pf-about-profile {
  background: var(--pf-cream);
  border-left: 3px solid var(--pf-blue);
  padding: 20px 24px;
  border-radius: 0 8px 8px 0;
}

.pf-about .pf-about-profile-title {
  font-family: var(--pf-font-head);
  font-weight: 600;
  font-size: 17px;
  color: var(--pf-black);
  margin-bottom: 8px;
}

.pf-about .pf-about-profile-text {
  font-family: var(--pf-font-body);
  font-size: 15px;
  color: var(--pf-grey);
  line-height: 1.7;
}

.pf-about .pf-about-clients-footer {
  border-top: 1px solid var(--pf-border);
  padding-top: 32px;
  margin-top: 8px;
}

.pf-about .pf-about-clients-sub {
  font-family: var(--pf-font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--pf-blue);
  margin-bottom: 12px;
}

/* ── Section 06 : Valeurs ────────────────────────────────────────────────────── */

.pf-about .pf-about-valeurs {
  padding: 100px 56px;
  background: var(--pf-blue-deep);
}

.pf-about .pf-about-valeurs-inner {
  max-width: 1440px;
  margin: 0 auto;
}

.pf-about .pf-about-valeurs-list {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pf-about .pf-about-valeur {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 32px 0;
}

.pf-about .pf-about-valeur-sep {
  height: 1px;
  background: rgba(179, 196, 245, 0.2);
}

.pf-about .pf-about-valeur-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--pf-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pf-about .pf-about-valeur-title {
  font-family: var(--pf-font-head);
  font-weight: 600;
  font-size: 20px;
  color: #fff;
  margin-bottom: 12px;
}

.pf-about .pf-about-valeur-text {
  font-family: var(--pf-font-body);
  font-size: 15px;
  color: var(--pf-blue-mid);
  line-height: 1.7;
}

/* ── Section 07 : Témoignages (wrapper) ──────────────────────────────────────── */

.pf-about .pf-testi-section-inner .pf-about-h2 { margin-bottom: 8px; }

/* ── Section 08 : FAQ (wrapper) ──────────────────────────────────────────────── */

.pf-about .pf-about-faq {
  padding: 80px 56px;
  background: #fff;
}

.pf-about .pf-about-faq-inner {
  max-width: 720px;
  margin: 0 auto;
}

.pf-about .pf-about-faq-inner .pf-about-h2 { margin-bottom: 40px; }

/* =============================================================================
   PAGE : AGENCE WEB TROYES (.pf-troyes)
   ============================================================================= */

/* ── Typographie ─────────────────────────────────────────────────────────────── */

.pf-troyes .pf-troyes-h2 {
  font-family: var(--pf-font-head);
  font-weight: 700;
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--pf-black);
  margin-bottom: 24px;
}

.pf-troyes .pf-troyes-h2--white { color: #fff; }

.pf-troyes .pf-troyes-text {
  font-family: var(--pf-font-body);
  font-size: 17px;
  color: var(--pf-grey);
  line-height: 1.7;
  margin-bottom: 16px;
}

.pf-troyes .pf-troyes-text--center {
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Section 01 : Hero ───────────────────────────────────────────────────────── */

.pf-troyes .pf-troyes-hero {
  padding: 120px 56px;
  background: #fff;
}

.pf-troyes .pf-troyes-hero-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 80px;
  align-items: center;
}

.pf-troyes .pf-troyes-h1 {
  font-family: var(--pf-font-head);
  font-weight: 600;
  font-size: 52px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--pf-black);
  margin: 20px 0 24px;
}

.pf-troyes .pf-troyes-subtitle {
  font-family: var(--pf-font-body);
  font-size: 18px;
  color: var(--pf-grey);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
}

.pf-troyes .pf-troyes-hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.pf-troyes .pf-troyes-proof {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-family: var(--pf-font-body);
  font-size: 13px;
  color: var(--pf-grey);
}

.pf-troyes .pf-troyes-proof span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pf-troyes .pf-troyes-proof svg { color: var(--pf-blue); flex-shrink: 0; }

.pf-troyes .pf-troyes-hero-mockup { position: relative; }

.pf-troyes .pf-troyes-hero-img {
  width: 100%;
  border-radius: 12px;
  display: block;
  transform: rotate(-1.5deg);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
}

.pf-troyes .pf-troyes-badge-amber {
  position: absolute;
  top: 20px;
  right: -12px;
  background: #FF6B35;
  color: #fff;
  font-family: var(--pf-font-head);
  font-weight: 700;
  font-size: 12px;
  padding: 8px 14px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
}

.pf-troyes .pf-troyes-badge-local {
  position: absolute;
  bottom: 20px;
  left: -12px;
  background: #fff;
  color: var(--pf-black);
  font-family: var(--pf-font-body);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.pf-troyes .pf-troyes-badge-local svg { color: var(--pf-blue); }

/* ── Section 02 : Ancrage local ──────────────────────────────────────────────── */

.pf-troyes .pf-troyes-ancrage {
  padding: 80px 56px;
  background: var(--pf-cream);
}

.pf-troyes .pf-troyes-ancrage-inner {
  max-width: 860px;
  margin: 0 auto;
}

.pf-troyes .pf-troyes-local-points {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.pf-troyes .pf-troyes-local-point {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.pf-troyes .pf-troyes-local-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--pf-blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--pf-blue);
}

.pf-troyes .pf-troyes-local-title {
  font-family: var(--pf-font-head);
  font-weight: 600;
  font-size: 16px;
  color: var(--pf-black);
  margin-bottom: 6px;
}

.pf-troyes .pf-troyes-local-text {
  font-family: var(--pf-font-body);
  font-size: 15px;
  color: var(--pf-grey);
  line-height: 1.6;
}

/* ── Section 03 : Services ───────────────────────────────────────────────────── */

.pf-troyes .pf-troyes-services {
  padding: 100px 56px;
  background: #fff;
  text-align: center;
}

.pf-troyes .pf-troyes-services-inner {
  max-width: 1440px;
  margin: 0 auto;
}

.pf-troyes .pf-troyes-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  text-align: left;
}

.pf-troyes .pf-troyes-service-card {
  border: 0.5px solid var(--pf-blue-mid);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pf-troyes .pf-troyes-service-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--pf-blue-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pf-troyes .pf-troyes-service-title {
  font-family: var(--pf-font-head);
  font-weight: 600;
  font-size: 18px;
  color: var(--pf-black);
  line-height: 1.3;
}

.pf-troyes .pf-troyes-service-text {
  font-family: var(--pf-font-body);
  font-size: 15px;
  color: var(--pf-grey);
  line-height: 1.7;
  flex: 1;
}

.pf-troyes .pf-troyes-service-badge {
  display: inline-block;
  background: #FFF3EE;
  color: #FF6B35;
  font-family: var(--pf-font-body);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  width: fit-content;
}

.pf-troyes .pf-troyes-service-link { margin-top: 4px; }

/* ── Section 04 : Avantage IA ────────────────────────────────────────────────── */

.pf-troyes .pf-troyes-ia {
  padding: 100px 56px;
  background: var(--pf-blue-deep);
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.pf-troyes .pf-troyes-ia-inner {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Fragment d'image architecturale (echo visuel avec le hero, top-right) */
.pf-troyes .pf-troyes-ia-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 65%;
  height: 55%;
  z-index: 1;
  pointer-events: none;
}

.pf-troyes .pf-troyes-ia-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top right;
  /* Blend mode screen : eclaircit le bleu deep avec les blancs de l'image */
  mix-blend-mode: screen;
  opacity: 0.35;
  display: block;
  /* Mask radial : image visible au coin haut-droit, fond progressivement vers la gauche/bas */
  -webkit-mask-image: radial-gradient(ellipse 100% 100% at 100% 0%, black 0%, rgba(0,0,0,0.6) 30%, transparent 85%);
  mask-image: radial-gradient(ellipse 100% 100% at 100% 0%, black 0%, rgba(0,0,0,0.6) 30%, transparent 85%);
}

.pf-troyes .pf-troyes-ia-intro {
  font-family: var(--pf-font-body);
  font-size: 17px;
  color: var(--pf-blue-mid);
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto 48px;
}

.pf-troyes .pf-troyes-ia-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  text-align: left;
}

.pf-troyes .pf-troyes-ia-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(179, 196, 245, 0.2);
  border-radius: 16px;
  padding: 28px;
}

.pf-troyes .pf-troyes-ia-card-icon {
  color: var(--pf-blue-mid);
  margin-bottom: 14px;
}

.pf-troyes .pf-troyes-ia-card-title {
  font-family: var(--pf-font-head);
  font-weight: 600;
  font-size: 17px;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}

.pf-troyes .pf-troyes-ia-card-text {
  font-family: var(--pf-font-body);
  font-size: 14px;
  color: var(--pf-blue-mid);
  line-height: 1.7;
}

/* ── Section 05 : Cas client ─────────────────────────────────────────────────── */

.pf-troyes .pf-troyes-caseclient {
  padding: 100px 56px;
  background: var(--pf-cream);
}

.pf-troyes .pf-troyes-caseclient-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 64px;
  align-items: center;
}

.pf-troyes .pf-troyes-cc-block { margin-bottom: 24px; }

.pf-troyes .pf-troyes-cc-label {
  display: block;
  font-family: var(--pf-font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pf-blue);
  margin-bottom: 8px;
}

.pf-troyes .pf-troyes-cc-text {
  font-family: var(--pf-font-body);
  font-size: 15px;
  color: var(--pf-grey);
  line-height: 1.7;
}

.pf-troyes .pf-troyes-cc-stats {
  display: flex;
  gap: 32px;
  margin: 32px 0;
}

.pf-troyes .pf-troyes-cc-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pf-troyes .pf-troyes-cc-stat-num {
  font-family: var(--pf-font-head);
  font-weight: 800;
  font-size: 40px;
  color: var(--pf-blue);
  line-height: 1;
}

.pf-troyes .pf-troyes-cc-stat-label {
  font-family: var(--pf-font-body);
  font-size: 13px;
  color: var(--pf-grey);
  line-height: 1.4;
}

.pf-troyes .pf-troyes-cc-quote {
  background: #fff;
  border: 0.5px solid var(--pf-blue-mid);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 24px 0;
}

.pf-troyes .pf-troyes-cc-stars {
  font-size: 16px;
  color: var(--pf-blue);
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.pf-troyes .pf-troyes-cc-quote p {
  font-family: var(--pf-font-body);
  font-size: 15px;
  font-style: italic;
  color: var(--pf-black);
  line-height: 1.7;
  margin-bottom: 12px;
}

.pf-troyes .pf-troyes-cc-quote cite {
  font-family: var(--pf-font-body);
  font-size: 13px;
  color: var(--pf-grey);
  font-style: normal;
}

.pf-troyes .pf-troyes-cc-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
  display: block;
}

/* ── Section 06 : Secteurs ───────────────────────────────────────────────────── */

.pf-troyes .pf-troyes-secteurs {
  padding: 80px 56px;
  background: #fff;
  text-align: center;
}

.pf-troyes .pf-troyes-secteurs-inner {
  max-width: 960px;
  margin: 0 auto;
}

.pf-troyes .pf-troyes-secteurs-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 32px 0;
}

.pf-troyes .pf-troyes-secteur-pill {
  background: var(--pf-cream);
  color: var(--pf-black);
  font-family: var(--pf-font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: border-color 0.2s;
}

.pf-troyes .pf-troyes-secteur-pill:hover { border-color: var(--pf-blue-mid); }

.pf-troyes .pf-troyes-secteurs-note {
  font-family: var(--pf-font-body);
  font-size: 15px;
  color: var(--pf-grey);
  line-height: 1.6;
}

/* ── Section 07 : Tableau comparatif ────────────────────────────────────────── */

.pf-troyes .pf-troyes-comparatif {
  padding: 100px 56px;
  background: var(--pf-cream);
}

.pf-troyes .pf-troyes-comparatif-inner {
  max-width: 960px;
  margin: 0 auto;
}

.pf-troyes .pf-troyes-table-wrap {
  overflow-x: auto;
  margin-top: 40px;
  border-radius: 16px;
  border: 0.5px solid var(--pf-blue-mid);
}

.pf-troyes .pf-troyes-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--pf-font-body);
  font-size: 15px;
}

.pf-troyes .pf-troyes-table th,
.pf-troyes .pf-troyes-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 0.5px solid var(--pf-blue-mid);
}

.pf-troyes .pf-troyes-table tbody tr:last-child td { border-bottom: none; }

.pf-troyes .pf-troyes-table th {
  font-family: var(--pf-font-head);
  font-weight: 600;
  font-size: 14px;
  background: var(--pf-cream);
}

.pf-troyes .pf-troyes-table .pf-troyes-table-paraflow {
  background: var(--pf-blue);
  color: #fff;
}

.pf-troyes .pf-troyes-table tbody .pf-troyes-table-paraflow {
  background: var(--pf-blue-pale);
  color: var(--pf-blue);
  font-weight: 500;
}

.pf-troyes .pf-troyes-table-criteria {
  width: 30%;
  color: var(--pf-black);
}

.pf-troyes .pf-troyes-table-classic { color: var(--pf-grey); }

/* ── Section 09 : FAQ (wrapper) ──────────────────────────────────────────────── */

.pf-troyes .pf-troyes-faq {
  padding: 100px 56px;
  background: #fff;
}

.pf-troyes .pf-troyes-faq-inner {
  max-width: 760px;
  margin: 0 auto;
}

.pf-troyes .pf-troyes-faq-inner .pf-troyes-h2 { margin-bottom: 40px; }

/* ── Section 10 : Témoignages (wrapper) ──────────────────────────────────────── */

.pf-troyes .pf-testi-section-inner .pf-troyes-h2 { margin-bottom: 8px; }

/* ── Section 11 : Zone géographique ─────────────────────────────────────────── */

.pf-troyes .pf-troyes-zone {
  padding: 80px 56px;
  background: #fff;
  text-align: center;
}

.pf-troyes .pf-troyes-zone-inner {
  max-width: 720px;
  margin: 0 auto;
}

.pf-troyes .pf-troyes-villes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 28px;
}

.pf-troyes .pf-troyes-ville-pill {
  background: var(--pf-blue-pale);
  color: var(--pf-blue);
  font-family: var(--pf-font-body);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
}

/* =============================================================================
   PAGE : SERVICES (.pf-services)
   ============================================================================= */

/* ── Typographie ─────────────────────────────────────────────────────────────── */

.pf-services .pf-srv-h2 {
  font-family: var(--pf-font-head);
  font-weight: 700;
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--pf-black);
  margin-bottom: 24px;
}

.pf-services .pf-srv-h2--center { text-align: center; }

/* ── Section 01 : Hero ───────────────────────────────────────────────────────── */

.pf-services .pf-srv-hero {
  padding: 120px 56px 80px;
  background: #fff;
  text-align: center;
}

.pf-services .pf-srv-hero-inner {
  max-width: 720px;
  margin: 0 auto;
}

.pf-services .pf-srv-h1 {
  font-family: var(--pf-font-head);
  font-weight: 600;
  font-size: 56px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--pf-black);
  margin: 20px 0;
}

.pf-services .pf-srv-subtitle {
  font-family: var(--pf-font-body);
  font-size: 18px;
  color: var(--pf-grey);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 40px;
}

.pf-services .pf-srv-anchors {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.pf-services .pf-srv-anchor-pill {
  font-family: var(--pf-font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--pf-black);
  background: var(--pf-cream);
  border: 1px solid transparent;
  padding: 10px 22px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.pf-services .pf-srv-anchor-pill:hover {
  background: var(--pf-blue-pale);
  border-color: var(--pf-blue-mid);
  color: var(--pf-blue);
}

/* ── Section 02 : Bandeau IA ─────────────────────────────────────────────────── */

.pf-services .pf-srv-ia-banner {
  background: var(--pf-blue-deep);
  padding: 64px 56px;
  text-align: center;
}

.pf-services .pf-srv-ia-banner-inner {
  max-width: 1440px;
  margin: 0 auto;
}

.pf-services .pf-srv-ia-title {
  font-family: var(--pf-font-head);
  font-weight: 600;
  font-size: 28px;
  color: #fff;
  margin-bottom: 48px;
}

.pf-services .pf-srv-ia-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.pf-services .pf-srv-ia-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--pf-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.pf-services .pf-srv-ia-col-title {
  font-family: var(--pf-font-head);
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  margin-bottom: 10px;
}

.pf-services .pf-srv-ia-col-text {
  font-family: var(--pf-font-body);
  font-size: 15px;
  color: var(--pf-blue-mid);
  line-height: 1.7;
}

/* ── Sections Services (03, 04, 05) ──────────────────────────────────────────── */

.pf-services .pf-srv-service { padding: 100px 56px; }
.pf-services .pf-srv-service--white { background: #fff; }
.pf-services .pf-srv-service--cream { background: var(--pf-cream); }

.pf-services .pf-srv-service-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 80px;
  align-items: center;
}

.pf-services .pf-srv-service--reversed .pf-srv-service-inner {
  grid-template-columns: 40% 60%;
}

.pf-services .pf-srv-service--reversed .pf-srv-service-visual { order: -1; }

.pf-services .pf-srv-service-intro {
  font-family: var(--pf-font-body);
  font-size: 18px;
  color: var(--pf-grey);
  line-height: 1.7;
  margin-bottom: 28px;
}

.pf-services .pf-srv-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.pf-services .pf-srv-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--pf-font-body);
  font-size: 15px;
  color: var(--pf-black);
  line-height: 1.5;
}

.pf-services .pf-srv-checklist li svg {
  color: var(--pf-blue);
  flex-shrink: 0;
  margin-top: 2px;
}

.pf-services .pf-srv-results {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.pf-services .pf-srv-result-badge {
  background: #FFF3EE;
  color: #E05A1E;
  font-family: var(--pf-font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}

.pf-services .pf-srv-ia-insight {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--pf-blue-pale);
  border: 1px solid var(--pf-blue-mid);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 24px;
}

.pf-services .pf-srv-ia-insight-icon {
  color: var(--pf-blue);
  flex-shrink: 0;
  margin-top: 1px;
}

.pf-services .pf-srv-ia-insight p {
  font-family: var(--pf-font-body);
  font-size: 15px;
  color: var(--pf-black);
  line-height: 1.6;
}

.pf-services .pf-srv-for-who {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.pf-services .pf-srv-for-who-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--pf-font-body);
  font-size: 15px;
  color: var(--pf-black);
}

.pf-services .pf-srv-for-who-item svg { color: var(--pf-blue); flex-shrink: 0; }

/* Pain points strategie : matrice 2x2 sur fond bleu pale */
.pf-services .pf-srv-pain {
  margin: 32px 0;
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(0, 62, 211, 0.04) 0%, rgba(99, 180, 255, 0.06) 100%);
  border: 1px solid rgba(0, 62, 211, 0.12);
  border-radius: 18px;
  position: relative;
  overflow: hidden;
}

.pf-services .pf-srv-pain::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(0, 62, 211, 0.10) 0%, rgba(0, 62, 211, 0) 70%);
  filter: blur(20px);
  pointer-events: none;
}

.pf-services .pf-srv-pain-title {
  position: relative;
  font-family: var(--pf-font-head);
  font-weight: 700;
  font-size: 14px;
  color: var(--pf-blue);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.pf-services .pf-srv-pain-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 28px;
}

.pf-services .pf-srv-pain-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--pf-font-body);
  font-size: 15px;
  line-height: 1.5;
  color: var(--pf-black);
}

.pf-services .pf-srv-pain-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pf-blue);
  flex-shrink: 0;
  margin-top: 9px;
}

@media (max-width: 768px) {
  .pf-services .pf-srv-pain { padding: 22px 20px; }
  .pf-services .pf-srv-pain-grid { grid-template-columns: 1fr; gap: 14px; }
  .pf-services .pf-srv-pain-title { font-size: 13px; }
}

.pf-services .pf-srv-service-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.pf-services .pf-srv-mockup-wrap { position: relative; }

.pf-services .pf-srv-mockup-img {
  width: 100%;
  border-radius: 12px;
  display: block;
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.1);
  transform: rotate(-1.5deg);
}

.pf-services .pf-srv-float-badge {
  position: absolute;
  font-family: var(--pf-font-body);
  font-size: 12px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 100px;
}

.pf-services .pf-srv-float-badge--amber {
  background: #FF6B35;
  color: #fff;
  top: 20px;
  right: -12px;
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
}

.pf-services .pf-srv-float-badge--white {
  background: #fff;
  color: var(--pf-black);
  bottom: 20px;
  left: -12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* ── Carousel mockups Webdesign : crossfade + halo radial + float subtil ── */

.pf-services .pf-srv-mockup-cycle {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pf-services .pf-srv-mockup-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  isolation: isolate;
}

.pf-services .pf-srv-mockup-glow {
  position: absolute;
  inset: 5% 10%;
  background: radial-gradient(ellipse at center, rgba(0, 62, 211, 0.18) 0%, rgba(0, 62, 211, 0) 65%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.pf-services .pf-srv-mockup-slide {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1100ms cubic-bezier(0.22, 1, 0.36, 1),
              visibility 0s linear 1100ms;
  animation: pf-srv-mockup-float 6s ease-in-out infinite;
  will-change: opacity, transform;
}

.pf-services .pf-srv-mockup-slide.is-active {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s, 0s;
}

.pf-services .pf-srv-mockup-slide picture,
.pf-services .pf-srv-mockup-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(15, 23, 42, 0.18));
}

@keyframes pf-srv-mockup-float {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

/* ── Carousel SEO : carte rounded + ombre douce ──────────────────────────── */

.pf-services .pf-srv-card-cycle {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pf-services .pf-srv-card-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow:
    0 30px 60px -25px rgba(0, 62, 211, 0.30),
    0 14px 28px -14px rgba(15, 23, 42, 0.18),
    0 0 0 1px rgba(15, 23, 42, 0.05);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.pf-services .pf-srv-card-cycle:hover .pf-srv-card-stage {
  transform: translateY(-3px);
}

.pf-services .pf-srv-card-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1100ms cubic-bezier(0.22, 1, 0.36, 1),
              visibility 0s linear 1100ms;
}

.pf-services .pf-srv-card-slide.is-active {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s, 0s;
}

.pf-services .pf-srv-card-slide picture,
.pf-services .pf-srv-card-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Meta partage : labels + dots */
.pf-services .pf-srv-mockup-meta,
.pf-services .pf-srv-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 4px;
}

.pf-services .pf-srv-mockup-labels,
.pf-services .pf-srv-card-labels {
  position: relative;
  flex: 1 1 auto;
  min-height: 22px;
}

.pf-services .pf-srv-mockup-label,
.pf-services .pf-srv-card-label {
  position: absolute;
  inset: 0;
  font-family: var(--pf-font-body);
  font-size: 13.5px;
  color: var(--pf-grey);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
  white-space: nowrap;
}

.pf-services .pf-srv-mockup-label.is-active,
.pf-services .pf-srv-card-label.is-active {
  opacity: 1;
  transform: translateY(0);
}

.pf-services .pf-srv-mockup-label strong,
.pf-services .pf-srv-card-label strong {
  font-weight: 600;
  color: var(--pf-black);
  font-size: 14px;
}

.pf-services .pf-srv-mockup-label span,
.pf-services .pf-srv-card-label span { color: var(--pf-blue); opacity: 0.5; font-weight: 700; }

.pf-services .pf-srv-mockup-label em,
.pf-services .pf-srv-card-label em { font-style: italic; }

/* Dots */
.pf-services .pf-srv-mockup-dots,
.pf-services .pf-srv-card-dots {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.pf-services .pf-srv-mockup-dots .pf-srv-mockup-dot,
.pf-services .pf-srv-card-dots .pf-srv-card-dot {
  -webkit-appearance: none;
  appearance: none;
  display: inline-block;
  width: 22px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.18);
  padding: 0;
  margin: 0;
  outline: none;
  box-shadow: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.3s ease, width 0.3s ease;
}

.pf-services .pf-srv-mockup-dots .pf-srv-mockup-dot:hover,
.pf-services .pf-srv-card-dots .pf-srv-card-dot:hover { background: rgba(0, 62, 211, 0.4); }

.pf-services .pf-srv-mockup-dots .pf-srv-mockup-dot.is-active,
.pf-services .pf-srv-card-dots .pf-srv-card-dot.is-active {
  width: 30px;
  background: var(--pf-blue);
}

.pf-services .pf-srv-mockup-dots .pf-srv-mockup-dot:focus-visible,
.pf-services .pf-srv-card-dots .pf-srv-card-dot:focus-visible {
  outline: 2px solid var(--pf-blue);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .pf-services .pf-srv-mockup-slide,
  .pf-services .pf-srv-card-slide,
  .pf-services .pf-srv-mockup-label,
  .pf-services .pf-srv-card-label { transition: none; }
  .pf-services .pf-srv-mockup-slide { animation: none; }
}

@media (max-width: 768px) {
  .pf-services .pf-srv-mockup-meta,
  .pf-services .pf-srv-card-meta { flex-direction: column; align-items: flex-start; gap: 10px; }
  .pf-services .pf-srv-mockup-label,
  .pf-services .pf-srv-card-label { font-size: 12.5px; }
}

.pf-services .pf-srv-process-schema {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  background: var(--pf-blue-pale);
  border: 1px solid var(--pf-blue-mid);
  border-radius: 16px;
  padding: 40px 24px;
}

.pf-services .pf-srv-process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.pf-services .pf-srv-process-num {
  font-family: var(--pf-font-head);
  font-weight: 700;
  font-size: 28px;
  color: var(--pf-blue);
  line-height: 1;
}

.pf-services .pf-srv-process-label {
  font-family: var(--pf-font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--pf-black);
}

.pf-services .pf-srv-process-arrow { color: var(--pf-blue-mid); }

/* ── Section 06 : Tableau comparatif ────────────────────────────────────────── */

.pf-services .pf-srv-comparatif {
  padding: 100px 56px;
  background: var(--pf-cream);
  text-align: center;
}

.pf-services .pf-srv-comparatif-inner {
  max-width: 960px;
  margin: 0 auto;
}

.pf-services .pf-srv-table-wrap {
  overflow-x: auto;
  margin-top: 40px;
  border-radius: 16px;
  border: 0.5px solid var(--pf-blue-mid);
}

.pf-services .pf-srv-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--pf-font-body);
  font-size: 15px;
  text-align: left;
}

.pf-services .pf-srv-table th,
.pf-services .pf-srv-table td {
  padding: 16px 20px;
  border-bottom: 0.5px solid var(--pf-blue-mid);
}

.pf-services .pf-srv-table tbody tr:last-child td { border-bottom: none; }

.pf-services .pf-srv-table th {
  font-family: var(--pf-font-head);
  font-weight: 600;
  font-size: 14px;
  background: var(--pf-cream);
}

.pf-services .pf-srv-table .pf-srv-table-criteria {
  width: 28%;
  color: var(--pf-black);
}

.pf-services .pf-srv-table .pf-srv-table-classic { color: var(--pf-grey); }

.pf-services .pf-srv-table .pf-srv-table-paraflow {
  background: var(--pf-blue);
  color: #fff;
}

.pf-services .pf-srv-table tbody .pf-srv-table-paraflow {
  background: var(--pf-blue-pale);
  color: var(--pf-blue);
  font-weight: 500;
}

/* ── Section 08 : Process ────────────────────────────────────────────────────── */

.pf-services .pf-srv-process {
  padding: 100px 56px;
  background: #fff;
  text-align: center;
}

.pf-services .pf-srv-process-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.pf-services .pf-srv-process-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 56px;
}

.pf-services .pf-srv-process-card {
  flex: 1;
  background: var(--pf-cream);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: left;
}

.pf-services .pf-srv-process-card-num {
  display: block;
  font-family: var(--pf-font-head);
  font-weight: 700;
  font-size: 48px;
  color: var(--pf-blue-mid);
  line-height: 1;
  margin-bottom: 16px;
}

.pf-services .pf-srv-process-card-title {
  font-family: var(--pf-font-head);
  font-weight: 600;
  font-size: 22px;
  color: var(--pf-black);
  margin-bottom: 12px;
}

.pf-services .pf-srv-process-card-text {
  font-family: var(--pf-font-body);
  font-size: 15px;
  color: var(--pf-grey);
  line-height: 1.7;
}

.pf-services .pf-srv-process-connector {
  color: var(--pf-blue-mid);
  padding: 0 16px;
  flex-shrink: 0;
}

/* ── Section 09 : FAQ (wrapper) ──────────────────────────────────────────────── */

.pf-services .pf-srv-faq {
  padding: 100px 56px;
  background: var(--pf-cream);
}

.pf-services .pf-srv-faq-inner {
  max-width: 760px;
  margin: 0 auto;
}

.pf-services .pf-srv-faq-inner .pf-srv-h2 { margin-bottom: 40px; }

/* =============================================================================
   SOUS-PAGES SERVICES (.pf-sub) — partagé entre Webdesign, SEO, Stratégie
   ============================================================================= */

/* ── Hero ────────────────────────────────────────────────────────────────────── */

.pf-sub-hero {
  padding: 72px 56px 80px;
  background: #fff;
}

.pf-sub-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.pf-sub-h1 {
  font-family: var(--pf-font-head);
  font-weight: 600;
  font-size: 60px;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--pf-black);
  margin: 20px 0 20px;
}

.pf-sub-h1-accent { color: var(--pf-blue); }

.pf-sub-subtitle {
  font-family: var(--pf-font-body);
  font-size: 18px;
  color: var(--pf-grey);
  line-height: 1.7;
  max-width: 620px;
  margin-bottom: 36px;
}

.pf-sub-hero-quick {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.pf-sub-hero-quick-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--pf-font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--pf-grey);
}

.pf-sub-hero-quick-item svg { color: var(--pf-blue); flex-shrink: 0; }

.pf-sub-hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── Webdesign v2 : Hero split + Showcase clients ─────────────────────────────
   Spotlight central + 2 thumbnails fantome en mix-blend-mode: luminosity.
   ============================================================================= */

.pf-sub-hero--split .pf-sub-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
}

.pf-wd-hero-content { display: flex; flex-direction: column; }

.pf-wd-showcase {
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 4;
  isolation: isolate;
}

/* Toutes les slides : stacked absolute, crossfade par opacity */
.pf-wd-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1100ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 1400ms cubic-bezier(0.22, 1, 0.36, 1),
              visibility 0s linear 1100ms;
  will-change: opacity, transform;
}
.pf-wd-slide.is-active {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s, 0s, 0s;
}

.pf-wd-slide picture,
.pf-wd-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Spotlight : image principale, cadre rounded + ombre douce + bordure subtile */
.pf-wd-spotlight {
  position: absolute;
  z-index: 3;
  top: 8%;
  left: 12%;
  right: 8%;
  bottom: 16%;
  border-radius: 16px;
  overflow: hidden;
  background: var(--pf-cream);
  box-shadow:
    0 30px 60px -25px rgba(0, 62, 211, 0.30),
    0 12px 24px -16px rgba(15, 23, 42, 0.18),
    0 0 0 1px rgba(0, 62, 211, 0.06);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.pf-wd-spotlight .pf-wd-slide {
  border-radius: inherit;
  overflow: hidden;
}

/* Subtile vignette en bas pour adoucir la transition vers le label */
.pf-wd-spotlight::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(0,0,0,0) 70%, rgba(15, 23, 42, 0.10) 100%);
  pointer-events: none;
  z-index: 4;
}

/* Cliquable : leger lift au hover */
.pf-wd-spotlight .pf-wd-slide.is-active:hover ~ * {} /* placeholder pour scope */
.pf-wd-showcase:hover .pf-wd-spotlight { transform: translateY(-2px); }

/* Ghost thumbnails en blend luminosity */
.pf-wd-ghost {
  position: absolute;
  border-radius: 12px;
  overflow: hidden;
  pointer-events: none;
  filter: grayscale(40%);
  /* Luminosity garde la luminance de l'image et prend la teinte du fond */
  mix-blend-mode: luminosity;
}

.pf-wd-ghost .pf-wd-slide {
  border-radius: inherit;
  overflow: hidden;
}

/* Top-left, dépasse au-dessus + à gauche */
.pf-wd-ghost--tl {
  z-index: 1;
  top: 0;
  left: 0;
  width: 38%;
  aspect-ratio: 16 / 10;
  transform: rotate(-2.5deg);
  opacity: 0.55;
}

/* Bottom-right, dépasse en bas + à droite */
.pf-wd-ghost--br {
  z-index: 2;
  bottom: 8%;
  right: -2%;
  width: 36%;
  aspect-ratio: 16 / 10;
  transform: rotate(3deg);
  opacity: 0.50;
}

/* Hover : leger renforcement des ghosts pour signaler que c'est un showcase vivant */
.pf-wd-showcase:hover .pf-wd-ghost--tl,
.pf-wd-showcase:hover .pf-wd-ghost--br {
  opacity: 0.7;
  transition: opacity 0.5s ease;
}

/* Meta : labels + dots, sous le visuel */
.pf-wd-meta {
  position: absolute;
  z-index: 5;
  left: 12%;
  right: 8%;
  bottom: -52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.pf-wd-labels {
  position: relative;
  flex: 1 1 auto;
  min-height: 22px;
}

.pf-wd-label {
  position: absolute;
  inset: 0;
  font-family: var(--pf-font-body);
  font-size: 14px;
  color: var(--pf-grey);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
  white-space: nowrap;
}

.pf-wd-label.is-active {
  opacity: 1;
  transform: translateY(0);
}

.pf-wd-label strong {
  font-weight: 600;
  color: var(--pf-black);
  font-size: 14.5px;
}

.pf-wd-label-sep { color: var(--pf-blue); opacity: 0.5; font-weight: 700; }
.pf-wd-label em { font-style: italic; }

/* Dots */
.pf-wd-dots {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.pf-wd-dots .pf-wd-dot {
  -webkit-appearance: none;
  appearance: none;
  display: inline-block;
  width: 24px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.18);
  padding: 0;
  margin: 0;
  outline: none;
  box-shadow: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.3s ease, width 0.3s ease;
}
.pf-wd-dots .pf-wd-dot:hover { background: rgba(0, 62, 211, 0.45); }
.pf-wd-dots .pf-wd-dot.is-active {
  width: 32px;
  background: var(--pf-blue);
}
.pf-wd-dots .pf-wd-dot:focus { outline: none; }
.pf-wd-dots .pf-wd-dot:focus-visible {
  outline: 2px solid var(--pf-blue);
  outline-offset: 3px;
}

/* Reduced motion : pas de cycle automatique, opacite fixe */
@media (prefers-reduced-motion: reduce) {
  .pf-wd-slide,
  .pf-wd-label { transition: none; }
}

/* Responsive : tablette + mobile */
@media (max-width: 1100px) {
  .pf-sub-hero--split .pf-sub-hero-inner { gap: 56px; }
  .pf-wd-spotlight { top: 6%; bottom: 18%; left: 10%; right: 6%; }
}

@media (max-width: 980px) {
  .pf-sub-hero--split .pf-sub-hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .pf-wd-showcase {
    aspect-ratio: 16 / 10;
    max-width: 640px;
    margin: 0 auto;
  }
  .pf-wd-spotlight { top: 4%; bottom: 18%; left: 8%; right: 8%; }
  .pf-wd-meta { bottom: -42px; }
}

@media (max-width: 768px) {
  .pf-wd-showcase { aspect-ratio: 4 / 3; }
  .pf-wd-ghost--tl,
  .pf-wd-ghost--br { display: none; } /* visuel epure sur mobile */
  .pf-wd-spotlight { top: 0; bottom: 14%; left: 0; right: 0; }
  .pf-wd-meta {
    bottom: -38px;
    left: 0; right: 0;
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }
  .pf-wd-label { font-size: 13px; }
}

/* ── Webdesign v3 : Hero split + Browser frame showcase ───────────────────────
   Cadre browser stylise (OS dots + URL bar dynamique) + screenshots 4:3.
   ============================================================================= */

.pf-sub-hero--browser .pf-sub-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 64px;
  align-items: center;
}

.pf-wd3-hero-content { display: flex; flex-direction: column; }

.pf-wd3-browser {
  position: relative;
  width: 100%;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow:
    0 30px 60px -25px rgba(0, 62, 211, 0.28),
    0 14px 28px -14px rgba(15, 23, 42, 0.18),
    0 1px 0 rgba(15, 23, 42, 0.05);
  isolation: isolate;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s ease;
}

.pf-wd3-browser:hover {
  transform: translateY(-3px);
  box-shadow:
    0 40px 80px -25px rgba(0, 62, 211, 0.35),
    0 20px 40px -14px rgba(15, 23, 42, 0.22);
}

/* Top bar : OS dots + URL */
.pf-wd3-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  height: 38px;
  padding: 0 14px;
  background: linear-gradient(180deg, #F8F8F6 0%, #EFEFEC 100%);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  position: relative;
  z-index: 2;
}

.pf-wd3-os-dots {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.pf-wd3-os-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: inline-block;
}

.pf-wd3-os-dot--red    { background: #FF5F57; box-shadow: inset 0 0 0 0.5px rgba(0, 0, 0, 0.18); }
.pf-wd3-os-dot--yellow { background: #FEBC2E; box-shadow: inset 0 0 0 0.5px rgba(0, 0, 0, 0.18); }
.pf-wd3-os-dot--green  { background: #28C840; box-shadow: inset 0 0 0 0.5px rgba(0, 0, 0, 0.18); }

/* URL bar centrale */
.pf-wd3-url {
  flex: 1 1 auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 24px;
  padding: 0 12px;
  background: #fff;
  border-radius: 6px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: #6B6B6B;
  overflow: hidden;
  position: relative;
  min-width: 0;
}

.pf-wd3-url-lock { color: #34A853; flex-shrink: 0; }

/* Stack des URL : crossfade + slide */
.pf-wd3-url-stack {
  position: relative;
  flex: 1 1 auto;
  height: 16px;
  display: inline-block;
  min-width: 0;
}

.pf-wd3-url-text {
  position: absolute;
  left: 0;
  top: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 500ms ease, transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
  letter-spacing: -0.005em;
}

.pf-wd3-url-text.is-active {
  opacity: 1;
  transform: translateY(0);
}

/* Le slug (apres /realisations/) en bleu pour signaler le changement */
.pf-wd3-url-text::after { content: ""; }

/* Cursor blink discret a la fin de l'URL */
.pf-wd3-url-cursor {
  position: absolute;
  right: 2px;
  top: 1px;
  width: 1.5px;
  height: 14px;
  background: var(--pf-blue);
  opacity: 0.5;
  animation: pf-wd3-blink 1s steps(2, start) infinite;
}

@keyframes pf-wd3-blink {
  to { opacity: 0; }
}

/* Icone droite (placeholder, signal "live") */
.pf-wd3-bar-actions {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.pf-wd3-bar-icon {
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  color: #B0B0B0;
}

/* Viewport : zone de contenu */
.pf-wd3-viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--pf-cream);
}

.pf-wd3-slide {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1100ms cubic-bezier(0.22, 1, 0.36, 1),
              visibility 0s linear 1100ms;
  text-decoration: none;
}

.pf-wd3-slide.is-active {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s, 0s;
}

.pf-wd3-slide picture,
.pf-wd3-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* Meta : dots + label */
.pf-wd3-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
  padding: 0 4px;
}

.pf-wd3-dots {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.pf-wd3-dots .pf-wd3-dot {
  -webkit-appearance: none;
  appearance: none;
  display: inline-block;
  width: 24px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.18);
  padding: 0;
  margin: 0;
  outline: none;
  box-shadow: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.3s ease, width 0.3s ease;
}
.pf-wd3-dots .pf-wd3-dot:hover { background: rgba(0, 62, 211, 0.45); }
.pf-wd3-dots .pf-wd3-dot.is-active {
  width: 32px;
  background: var(--pf-blue);
}
.pf-wd3-dots .pf-wd3-dot:focus { outline: none; }
.pf-wd3-dots .pf-wd3-dot:focus-visible {
  outline: 2px solid var(--pf-blue);
  outline-offset: 3px;
}

.pf-wd3-labels {
  position: relative;
  flex: 1 1 auto;
  min-height: 22px;
  text-align: right;
}

.pf-wd3-label {
  position: absolute;
  inset: 0;
  font-family: var(--pf-font-body);
  font-size: 14px;
  color: var(--pf-grey);
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
  white-space: nowrap;
}

.pf-wd3-label.is-active {
  opacity: 1;
  transform: translateY(0);
}

.pf-wd3-label strong {
  font-weight: 600;
  color: var(--pf-black);
  font-size: 14.5px;
}

.pf-wd3-label-sep { color: var(--pf-blue); opacity: 0.5; font-weight: 700; }
.pf-wd3-label em { font-style: italic; }

@media (prefers-reduced-motion: reduce) {
  .pf-wd3-slide,
  .pf-wd3-url-text,
  .pf-wd3-label,
  .pf-wd3-browser { transition: none; }
  .pf-wd3-url-cursor { animation: none; }
}

/* Responsive */
@media (max-width: 1100px) {
  .pf-sub-hero--browser .pf-sub-hero-inner { gap: 48px; }
}

@media (max-width: 980px) {
  .pf-sub-hero--browser .pf-sub-hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .pf-wd3-browser { max-width: 720px; margin: 0 auto; }
  .pf-wd3-bar { height: 34px; }
  .pf-wd3-url { font-size: 11.5px; }
}

@media (max-width: 768px) {
  .pf-wd3-bar { height: 32px; padding: 0 10px; gap: 10px; }
  .pf-wd3-os-dot { width: 9px; height: 9px; }
  .pf-wd3-bar-actions { display: none; }
  .pf-wd3-meta { flex-direction: column; align-items: flex-start; gap: 10px; }
  .pf-wd3-labels { text-align: left; }
  .pf-wd3-label { justify-content: flex-start; font-size: 13px; }
}

/* ── Sous-titre H2 partagé ───────────────────────────────────────────────────── */

.pf-sub-h2 {
  font-family: var(--pf-font-head);
  font-weight: 800;
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--pf-black);
  margin: 0 0 24px;
}

.pf-sub-h2--center { text-align: center; }

/* ── Section : Pourquoi ──────────────────────────────────────────────────────── */

.pf-sub-why {
  padding: 80px 56px;
  background: var(--pf-cream);
}

.pf-sub-why-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 55% 40%;
  gap: 80px;
  align-items: center;
}

.pf-sub-why-p {
  font-family: var(--pf-font-body);
  font-size: 16px;
  color: var(--pf-grey);
  line-height: 1.7;
  margin: 0 0 20px;
}

/* Comparatif vs */
.pf-sub-why-vs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

/* Variante : une seule colonne (pas de comparatif, juste les bénéfices) */
.pf-sub-why-vs--solo {
  grid-template-columns: 1fr;
}

.pf-sub-why-vs-col {
  border-radius: 12px;
  padding: 20px;
  font-family: var(--pf-font-body);
  font-size: 13px;
  line-height: 1.7;
}

.pf-sub-why-vs-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--pf-grey);
}

.pf-sub-why-vs-col--bad {
  background: #fef2f2;
  border: 1px solid #fecaca;
}

.pf-sub-why-vs-col--bad .pf-sub-why-vs-head {
  font-family: var(--pf-font-head);
  font-weight: 700;
  font-size: 13px;
  color: #991b1b;
  margin-bottom: 12px;
}

.pf-sub-why-vs-col--good {
  background: var(--pf-blue-pale);
  border: 1px solid var(--pf-blue-mid);
}

.pf-sub-why-vs-col--good .pf-sub-why-vs-head {
  font-family: var(--pf-font-head);
  font-weight: 700;
  font-size: 13px;
  color: var(--pf-blue);
  margin-bottom: 12px;
}

/* Mockup CSS décoratif (webdesign) */
.pf-sub-why-mockup {
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--pf-border);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.pf-sub-why-mockup-bar {
  background: var(--pf-cream);
  padding: 10px 16px;
  display: flex;
  gap: 6px;
  border-bottom: 1px solid var(--pf-border);
}

.pf-sub-why-mockup-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pf-border);
  display: block;
}

.pf-sub-why-mockup-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pf-sub-why-mockup-line {
  border-radius: 4px;
  background: var(--pf-blue-pale);
}

.pf-sub-why-mockup-line--hero { height: 20px; width: 70%; }
.pf-sub-why-mockup-line--sub  { height: 10px; width: 90%; background: var(--pf-cream); }

.pf-sub-why-mockup-btn {
  width: 100px;
  height: 28px;
  background: var(--pf-blue);
  border-radius: 6px;
}

.pf-sub-why-mockup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-top: 8px;
}

.pf-sub-why-mockup-card {
  height: 60px;
  background: var(--pf-cream);
  border-radius: 6px;
  border: 1px solid var(--pf-border);
}

.pf-sub-why-visual {
  position: relative;
}

.pf-sub-why-badge {
  position: absolute;
  font-family: var(--pf-font-head);
  font-weight: 700;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.pf-sub-why-badge--green {
  background: #edf7f0;
  color: #1a8a3c;
  top: -16px;
  right: 24px;
}

.pf-sub-why-badge--blue {
  background: var(--pf-blue);
  color: #fff;
  bottom: -16px;
  left: 24px;
}

/* Graphique SEO */
.pf-sub-why-visual--seo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pf-sub-seo-chart {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--pf-border);
  padding: 28px;
  width: 100%;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

.pf-sub-seo-chart-label {
  font-family: var(--pf-font-head);
  font-size: 12px;
  font-weight: 600;
  color: var(--pf-grey);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.pf-sub-seo-chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 120px;
}

.pf-sub-seo-bar {
  flex: 1;
  background: var(--pf-blue-pale);
  border-radius: 4px 4px 0 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 4px;
  transition: background 0.2s;
}

.pf-sub-seo-bar span {
  font-family: var(--pf-font-body);
  font-size: 10px;
  color: var(--pf-grey);
}

.pf-sub-seo-bar--peak { background: var(--pf-blue); }
.pf-sub-seo-bar--peak span { color: #fff; }

.pf-sub-seo-chart-stat {
  font-family: var(--pf-font-head);
  font-weight: 800;
  font-size: 22px;
  color: var(--pf-blue);
  margin-top: 16px;
}

/* ── Hero Blend (partage : SEO, maintenance, strategie) ─────────────────── */

.pf-seo-hero,
.pf-maint-hero,
.pf-strat-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.pf-seo-hero .pf-sub-hero-inner,
.pf-maint-hero .pf-sub-hero-inner,
.pf-strat-hero .pf-sub-hero-inner {
  position: relative;
  z-index: 2;
}

.pf-seo-hero-blend,
.pf-maint-hero-blend,
.pf-strat-hero-blend {
  position: absolute;
  top: 0;
  right: 0;
  width: 78%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.pf-seo-hero-blend picture,  .pf-seo-hero-blend img,
.pf-maint-hero-blend picture, .pf-maint-hero-blend img,
.pf-strat-hero-blend picture, .pf-strat-hero-blend img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  mix-blend-mode: multiply;
  opacity: 0.45;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.5) 30%, black 65%, black 100%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.5) 30%, black 65%, black 100%);
  animation: pf-hero-blend-pan 22s ease-in-out infinite;
  will-change: transform;
}

@keyframes pf-hero-blend-pan {
  0%   { transform: scale(1.02) translateX(0); }
  50%  { transform: scale(1.07) translateX(-1.4%); }
  100% { transform: scale(1.02) translateX(0); }
}

/* ── SEO Indicateurs suivis : 4 KPIs en bandeau ──────────────────────────── */

.pf-seo-kpis {
  padding: 96px 56px;
  background: var(--pf-blue-deep);
  color: #fff;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.pf-seo-kpis::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url('../img/hero/hero-architecture-1280.webp');
  background-size: cover;
  background-position: center right;
  mix-blend-mode: screen;
  opacity: 0.14;
  -webkit-mask-image: radial-gradient(ellipse 80% 100% at 100% 50%, black 0%, transparent 75%);
  mask-image: radial-gradient(ellipse 80% 100% at 100% 50%, black 0%, transparent 75%);
}

.pf-seo-kpis-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

.pf-seo-kpis .pf-section-label {
  color: #fff;
  text-decoration-color: rgba(255, 255, 255, 0.4);
  margin-bottom: 48px;
}

.pf-seo-kpis-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: left;
  margin-bottom: 48px;
}

.pf-seo-kpi {
  padding: 0 16px 0 0;
  border-left: 2px solid rgba(255, 255, 255, 0.18);
  padding-left: 20px;
}

.pf-seo-kpi:first-child {
  border-left: 0;
  padding-left: 0;
}

.pf-seo-kpi-title {
  font-family: var(--pf-font-head);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #B3C4F5;
  margin-bottom: 10px;
}

.pf-seo-kpi-desc {
  font-family: var(--pf-font-body);
  font-weight: 400;
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
}

.pf-seo-kpis-footer {
  font-family: var(--pf-font-body);
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 720px;
  margin: 0 auto;
  font-style: italic;
}

@media (max-width: 980px) {
  .pf-seo-kpis { padding: 72px 32px; }
  .pf-seo-kpis-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 24px; }
  .pf-seo-kpi { border-left: 0; padding-left: 0; }
  .pf-seo-kpi:nth-child(2) { border-left: 0; }
}

@media (max-width: 640px) {
  .pf-seo-kpis { padding: 56px 20px; }
  .pf-seo-kpis-grid { grid-template-columns: 1fr; gap: 24px; }
  .pf-seo-kpi-title { font-size: 22px; }
}

/* ── SEO Tools : showcase mockup tilte (sans texte) ──────────────────────── */

.pf-seo-tools {
  padding: 100px 56px 110px;
  background: linear-gradient(180deg, #fff 0%, var(--pf-cream) 100%);
  position: relative;
  overflow: hidden;
}

.pf-seo-tools-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.pf-seo-tools-stage {
  position: relative;
  width: 100%;
  perspective: 2000px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px 0;
}

/* Orbs decoratifs blurry en arriere-plan */
.pf-seo-tools-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.pf-seo-tools-orb--blue {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(0,62,211,0.40) 0%, rgba(0,62,211,0) 70%);
  top: -12%;
  left: 4%;
}

.pf-seo-tools-orb--cyan {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(99,180,255,0.42) 0%, rgba(99,180,255,0) 70%);
  bottom: -16%;
  right: 6%;
}

/* Frame OS-style inclinee */
.pf-seo-tools-frame {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  border-radius: 18px;
  overflow: hidden;
  background: #1a1a1f;
  box-shadow:
    0 70px 140px -35px rgba(0, 62, 211, 0.50),
    0 30px 60px -25px rgba(15, 23, 42, 0.30),
    0 0 0 1px rgba(15, 23, 42, 0.08);
  transform: perspective(2000px) rotateY(-3.5deg) rotateX(2deg) translateZ(0);
  transform-origin: center center;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.pf-seo-tools-frame:hover {
  transform: perspective(2000px) rotateY(0deg) rotateX(0deg) translateZ(0);
}

/* Top bar avec OS dots + indicateur live */
.pf-seo-tools-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 38px;
  padding: 0 16px;
  background: linear-gradient(180deg, #2a2a32 0%, #1f1f24 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pf-seo-tools-os {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.pf-seo-tools-os-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: inline-block;
  box-shadow: inset 0 0 0 0.5px rgba(0, 0, 0, 0.20);
}
.pf-seo-tools-os-dot--red    { background: #FF5F57; }
.pf-seo-tools-os-dot--yellow { background: #FEBC2E; }
.pf-seo-tools-os-dot--green  { background: #28C840; }

.pf-seo-tools-pulse {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.02em;
}

.pf-seo-tools-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #28C840;
  box-shadow: 0 0 0 0 rgba(40, 200, 64, 0.7);
  animation: pf-seo-pulse 2.2s infinite;
  flex-shrink: 0;
}

@keyframes pf-seo-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(40, 200, 64, 0.65); }
  70%  { box-shadow: 0 0 0 11px rgba(40, 200, 64, 0); }
  100% { box-shadow: 0 0 0 0 rgba(40, 200, 64, 0); }
}

/* Screen avec image */
.pf-seo-tools-screen {
  position: relative;
  background: #fff;
  overflow: hidden;
  display: block;
}

.pf-seo-tools-screen picture,
.pf-seo-tools-screen img {
  display: block;
  width: 100%;
  height: auto;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .pf-seo-hero-blend img,
  .pf-maint-hero-blend img,
  .pf-strat-hero-blend img { animation: none; }
  .pf-seo-tools-pulse-dot { animation: none; }
  .pf-seo-tools-frame { transition: none; transform: none; }
}

/* Responsive — heros blend partages */
@media (max-width: 980px) {
  .pf-seo-hero-blend,
  .pf-maint-hero-blend,
  .pf-strat-hero-blend { width: 100%; }
  .pf-seo-hero-blend img,
  .pf-maint-hero-blend img,
  .pf-strat-hero-blend img { opacity: 0.32; }

  .pf-seo-tools { padding: 64px 32px 72px; }
  .pf-seo-tools-frame { transform: none; }
  .pf-seo-tools-orb--blue  { width: 380px; height: 380px; left: -5%; }
  .pf-seo-tools-orb--cyan  { width: 320px; height: 320px; right: -5%; }
}

@media (max-width: 768px) {
  .pf-seo-hero-blend,
  .pf-maint-hero-blend,
  .pf-strat-hero-blend { display: none; }

  .pf-seo-tools { padding: 48px 16px 56px; }
  .pf-seo-tools-orb--blue,
  .pf-seo-tools-orb--cyan { display: none; }
  .pf-seo-tools-bar { height: 32px; padding: 0 10px; }
  .pf-seo-tools-os-dot { width: 9px; height: 9px; }
  .pf-seo-tools-pulse { font-size: 10.5px; }
  .pf-seo-tools-pulse-dot { width: 6px; height: 6px; }
}

/* Schéma stratégie */
.pf-sub-strat-schema {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--pf-border);
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

.pf-sub-strat-node {
  background: var(--pf-blue-pale);
  border: 1px solid var(--pf-blue-mid);
  border-radius: 10px;
  padding: 10px 18px;
  font-family: var(--pf-font-head);
  font-weight: 600;
  font-size: 13px;
  color: var(--pf-blue);
  text-align: center;
}

.pf-sub-strat-node--center {
  background: var(--pf-blue);
  color: #fff;
  border-color: var(--pf-blue);
  font-size: 15px;
  padding: 14px 24px;
}

.pf-sub-strat-branches {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  width: 100%;
}

.pf-sub-strat-branch { display: flex; justify-content: center; }

.pf-sub-strat-result {
  font-family: var(--pf-font-head);
  font-weight: 800;
  font-size: 16px;
  color: var(--pf-blue);
  background: var(--pf-cream);
  border-radius: 8px;
  padding: 12px 24px;
}

/* Symptômes (stratégie) */
/* Carte status Maintenance (visuel section S02) */
.pf-sub-maint-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--pf-border);
  padding: 28px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pf-sub-maint-card-status {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--pf-border);
  margin-bottom: 4px;
}

.pf-sub-maint-status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.pf-sub-maint-status-dot--ok {
  background: #1a8a3c;
  box-shadow: 0 0 0 4px rgba(26, 138, 60, 0.15);
}

.pf-sub-maint-card-label {
  font-family: var(--pf-font-head);
  font-weight: 600;
  font-size: 14px;
  color: var(--pf-black);
}

.pf-sub-maint-card-time {
  margin-left: auto;
  font-family: var(--pf-font-head);
  font-weight: 700;
  font-size: 14px;
  color: #1a8a3c;
}

.pf-sub-maint-card-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--pf-font-body);
  font-size: 13px;
  color: var(--pf-grey);
}

.pf-sub-maint-card-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #edf7f0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pf-sub-maint-card-stat {
  font-family: var(--pf-font-head);
  font-weight: 800;
  font-size: 18px;
  color: var(--pf-blue);
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--pf-border);
}

/* ── Maintenance : sections specifiques (hero blend partage plus haut) ────── */

@keyframes pf-maint-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(26, 138, 60, 0.65); }
  70%  { box-shadow: 0 0 0 10px rgba(26, 138, 60, 0); }
  100% { box-shadow: 0 0 0 0 rgba(26, 138, 60, 0); }
}

/* ── Maintenance "Pourquoi" : stage avec image WP + glass overlay ─────────── */

.pf-maint-stage {
  position: relative;
  width: 100%;
  isolation: isolate;
}

.pf-maint-stage-img {
  position: relative;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 40px 80px -30px rgba(0, 62, 211, 0.30),
    0 18px 36px -18px rgba(15, 23, 42, 0.18);
}

.pf-maint-stage-img picture,
.pf-maint-stage-img img {
  display: block;
  width: 100%;
  height: auto;
}

/* Glass card en overlay : sort largement en bas a droite */
.pf-maint-glass {
  position: absolute;
  bottom: -64px;
  right: -16px;
  z-index: 2;
  width: clamp(240px, 60%, 300px);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow:
    0 30px 60px -25px rgba(15, 23, 42, 0.30),
    0 10px 20px -10px rgba(15, 23, 42, 0.15);
}

.pf-maint-glass-status {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  margin-bottom: 14px;
}

.pf-maint-glass-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1a8a3c;
  box-shadow: 0 0 0 0 rgba(26, 138, 60, 0.65);
  animation: pf-maint-pulse 2.2s infinite;
  flex-shrink: 0;
}

.pf-maint-glass-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--pf-black);
  flex: 1 1 auto;
}

.pf-maint-glass-time {
  font-family: var(--pf-font-head);
  font-size: 13px;
  font-weight: 700;
  color: #1a8a3c;
  letter-spacing: 0;
}

.pf-maint-glass-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pf-maint-glass-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--pf-black);
}

.pf-maint-glass-check {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #E5F5EC;
  color: #1a8a3c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pf-maint-glass-stat {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  font-family: var(--pf-font-head);
  font-weight: 800;
  font-size: 16px;
  color: var(--pf-blue);
  text-align: center;
}

/* Animation stagger : items invisibles puis revele en cascade */
.pf-maint-stagger-item {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 600ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.pf-maint-stage.is-revealed .pf-maint-stagger-item {
  opacity: 1;
  transform: translateY(0);
}

.pf-maint-stage.is-revealed .pf-maint-stagger-item:nth-child(1) { transition-delay: 0ms; }
.pf-maint-stage.is-revealed .pf-maint-glass-list .pf-maint-stagger-item:nth-child(1) { transition-delay: 200ms; }
.pf-maint-stage.is-revealed .pf-maint-glass-list .pf-maint-stagger-item:nth-child(2) { transition-delay: 350ms; }
.pf-maint-stage.is-revealed .pf-maint-glass-list .pf-maint-stagger-item:nth-child(3) { transition-delay: 500ms; }
.pf-maint-stage.is-revealed .pf-maint-glass-list .pf-maint-stagger-item:nth-child(4) { transition-delay: 650ms; }
.pf-maint-stage.is-revealed > .pf-maint-glass > .pf-maint-glass-stat { transition-delay: 850ms; }

/* Anim "draw" du check : cercle qui scale + svg qui apparait */
.pf-maint-glass-check svg {
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 350ms ease, transform 450ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pf-maint-stage.is-revealed .pf-maint-glass-row:nth-child(1) .pf-maint-glass-check svg { transition-delay: 350ms; opacity: 1; transform: scale(1); }
.pf-maint-stage.is-revealed .pf-maint-glass-row:nth-child(2) .pf-maint-glass-check svg { transition-delay: 500ms; opacity: 1; transform: scale(1); }
.pf-maint-stage.is-revealed .pf-maint-glass-row:nth-child(3) .pf-maint-glass-check svg { transition-delay: 650ms; opacity: 1; transform: scale(1); }
.pf-maint-stage.is-revealed .pf-maint-glass-row:nth-child(4) .pf-maint-glass-check svg { transition-delay: 800ms; opacity: 1; transform: scale(1); }

/* ── Maintenance Tools : showcase WP backoffice tilte ────────────────────── */

.pf-maint-tools {
  padding: 100px 56px 110px;
  background: linear-gradient(180deg, var(--pf-cream) 0%, #fff 100%);
  position: relative;
  overflow: hidden;
}

.pf-maint-tools-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.pf-maint-tools-stage {
  position: relative;
  width: 100%;
  perspective: 2000px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px 0;
}

.pf-maint-tools-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.pf-maint-tools-orb--blue {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(0,62,211,0.38) 0%, rgba(0,62,211,0) 70%);
  top: -12%;
  right: 4%;
}

.pf-maint-tools-orb--cyan {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(99,180,255,0.38) 0%, rgba(99,180,255,0) 70%);
  bottom: -16%;
  left: 6%;
}

.pf-maint-tools-frame {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  border-radius: 18px;
  overflow: hidden;
  background: #1a1a1f;
  box-shadow:
    0 70px 140px -35px rgba(0, 62, 211, 0.45),
    0 30px 60px -25px rgba(15, 23, 42, 0.30),
    0 0 0 1px rgba(15, 23, 42, 0.08);
  transform: perspective(2000px) rotateY(3.5deg) rotateX(2deg) translateZ(0);
  transform-origin: center center;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.pf-maint-tools-frame:hover {
  transform: perspective(2000px) rotateY(0deg) rotateX(0deg) translateZ(0);
}

.pf-maint-tools-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 38px;
  padding: 0 16px;
  background: linear-gradient(180deg, #2a2a32 0%, #1f1f24 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pf-maint-tools-os { display: inline-flex; align-items: center; gap: 7px; }

.pf-maint-tools-os-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: inline-block;
  box-shadow: inset 0 0 0 0.5px rgba(0, 0, 0, 0.20);
}
.pf-maint-tools-os-dot--red    { background: #FF5F57; }
.pf-maint-tools-os-dot--yellow { background: #FEBC2E; }
.pf-maint-tools-os-dot--green  { background: #28C840; }

.pf-maint-tools-pulse {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.02em;
}

.pf-maint-tools-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #28C840;
  box-shadow: 0 0 0 0 rgba(40, 200, 64, 0.7);
  animation: pf-maint-pulse 2.2s infinite;
  flex-shrink: 0;
}

.pf-maint-tools-screen {
  position: relative;
  background: #fff;
  overflow: hidden;
  display: block;
}

.pf-maint-tools-screen picture,
.pf-maint-tools-screen img {
  display: block;
  width: 100%;
  height: auto;
}

/* Reduced motion (specifique maintenance) */
@media (prefers-reduced-motion: reduce) {
  .pf-maint-glass-dot,
  .pf-maint-tools-pulse-dot { animation: none; }
  .pf-maint-stagger-item { opacity: 1; transform: none; transition: none; }
  .pf-maint-glass-check svg { opacity: 1; transform: none; transition: none; }
  .pf-maint-tools-frame { transition: none; transform: none; }
}

/* Responsive */
@media (max-width: 980px) {
  .pf-maint-glass {
    width: clamp(220px, 70%, 280px);
    bottom: -56px;
    right: -8px;
    padding: 14px 16px;
  }

  .pf-maint-tools { padding: 64px 32px 72px; }
  .pf-maint-tools-frame { transform: none; }
  .pf-maint-tools-orb--blue  { width: 380px; height: 380px; right: -5%; }
  .pf-maint-tools-orb--cyan  { width: 320px; height: 320px; left: -5%; }
}

@media (max-width: 768px) {

  .pf-maint-glass {
    position: relative;
    bottom: auto;
    right: auto;
    width: 100%;
    margin-top: 16px;
  }

  .pf-maint-tools { padding: 48px 16px 56px; }
  .pf-maint-tools-orb--blue,
  .pf-maint-tools-orb--cyan { display: none; }
  .pf-maint-tools-bar { height: 32px; padding: 0 10px; }
  .pf-maint-tools-os-dot { width: 9px; height: 9px; }
  .pf-maint-tools-pulse { font-size: 10.5px; }
  .pf-maint-tools-pulse-dot { width: 6px; height: 6px; }
}

.pf-sub-strat-symptoms {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.pf-sub-strat-symptom {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--pf-font-body);
  font-size: 15px;
  color: var(--pf-grey);
  line-height: 1.5;
}

.pf-sub-strat-symptom--checked svg { color: var(--pf-blue); flex-shrink: 0; margin-top: 2px; }

/* ── Section : Process ───────────────────────────────────────────────────────── */

.pf-sub-process {
  padding: 80px 56px;
  background: #fff;
}

.pf-sub-process-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.pf-sub-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 48px;
  flex-wrap: nowrap;
  overflow-x: auto;
}

.pf-sub-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 160px;
}

.pf-sub-step-num {
  font-family: var(--pf-font-head);
  font-weight: 800;
  font-size: 48px;
  color: var(--pf-blue-pale);
  line-height: 1;
  letter-spacing: -0.02em;
}

.pf-sub-step-icon {
  width: 44px;
  height: 44px;
  background: var(--pf-blue-pale);
  border-radius: 50%;
  color: var(--pf-blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pf-sub-step-title {
  font-family: var(--pf-font-head);
  font-weight: 700;
  font-size: 16px;
  color: var(--pf-black);
  margin: 0;
}

.pf-sub-step-text {
  font-family: var(--pf-font-body);
  font-size: 13px;
  color: var(--pf-grey);
  line-height: 1.6;
  margin: 0;
}

.pf-sub-step-duration {
  font-family: var(--pf-font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pf-blue);
  background: var(--pf-blue-pale);
  padding: 4px 10px;
  border-radius: 999px;
  align-self: flex-start;
}

.pf-sub-step-arrow {
  display: flex;
  align-items: center;
  padding: 0 16px;
  color: var(--pf-blue-mid);
  flex-shrink: 0;
  margin-top: 56px;
}

/* ── Section : Ce qui est inclus ─────────────────────────────────────────────── */

.pf-sub-inclus {
  padding: 80px 56px;
  background: var(--pf-cream);
}

.pf-sub-inclus-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.pf-sub-inclus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.pf-sub-inclus-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border-radius: 12px;
  border: 0.5px solid var(--pf-border);
  padding: 20px;
}

.pf-sub-inclus-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--pf-blue-pale);
  color: var(--pf-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pf-sub-inclus-title {
  font-family: var(--pf-font-head);
  font-weight: 700;
  font-size: 15px;
  color: var(--pf-black);
  margin-bottom: 6px;
}

.pf-sub-inclus-desc {
  font-family: var(--pf-font-body);
  font-size: 13px;
  color: var(--pf-grey);
  line-height: 1.6;
}

/* ── Section : Tarifs ────────────────────────────────────────────────────────── */

.pf-sub-tarifs {
  padding: 80px 56px;
  background: #fff;
}

.pf-sub-tarifs-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.pf-sub-tarifs-intro {
  font-family: var(--pf-font-body);
  font-size: 16px;
  color: var(--pf-grey);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 48px;
}

.pf-sub-tarifs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
  text-align: left;
}

/* Variante : CTA card unique (Stratégie) */
.pf-sub-strat-cta-card {
  background: var(--pf-cream);
  border: 1px solid var(--pf-blue-mid);
  border-radius: 16px;
  padding: 48px 56px;
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}

.pf-sub-strat-cta-title {
  font-family: var(--pf-font-head);
  font-weight: 700;
  font-size: 22px;
  color: var(--pf-black);
  margin: 0 0 24px;
}

.pf-sub-strat-cta-steps {
  list-style: none;
  counter-reset: step;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pf-sub-strat-cta-steps li {
  counter-increment: step;
  font-family: var(--pf-font-body);
  font-size: 15px;
  color: var(--pf-grey);
  line-height: 1.6;
  padding-left: 36px;
  position: relative;
}

.pf-sub-strat-cta-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background: var(--pf-blue);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--pf-font-head);
  font-weight: 700;
  font-size: 12px;
}

.pf-sub-strat-cta-steps li strong { color: var(--pf-black); }

.pf-sub-strat-cta-note {
  font-family: var(--pf-font-body);
  font-size: 13px;
  color: var(--pf-grey);
  margin: 16px 0 0;
}

.pf-sub-tarif-card {
  border-radius: 16px;
  border: 1px solid var(--pf-border);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  background: #fff;
}

.pf-sub-tarif-card--featured {
  border-color: var(--pf-blue);
  box-shadow: 0 8px 32px rgba(0, 62, 211, 0.10);
}

/* Boutons des cartes tarifs : largeur naturelle, ancrés en bas de carte */
.pf-sub-tarif-card > .pf-btn-primary,
.pf-sub-tarif-card > .pf-btn-outline {
  align-self: center;
  margin-top: auto;
}

.pf-sub-tarif-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pf-blue);
  color: #fff;
  font-family: var(--pf-font-head);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 999px;
  white-space: nowrap;
}

.pf-sub-tarif-name {
  font-family: var(--pf-font-head);
  font-weight: 700;
  font-size: 18px;
  color: var(--pf-black);
  margin-bottom: 8px;
}

.pf-sub-tarif-price {
  font-family: var(--pf-font-body);
  font-size: 15px;
  color: var(--pf-grey);
}

.pf-sub-tarif-price strong {
  font-family: var(--pf-font-head);
  font-weight: 800;
  font-size: 24px;
  color: var(--pf-blue);
}

.pf-sub-tarif-duration {
  font-family: var(--pf-font-body);
  font-size: 12px;
  color: var(--pf-grey);
}

.pf-sub-tarif-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.pf-sub-tarif-list li {
  font-family: var(--pf-font-body);
  font-size: 14px;
  color: var(--pf-grey);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.pf-sub-tarif-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--pf-blue);
  font-weight: 700;
}

/* ── Section : FAQ ───────────────────────────────────────────────────────────── */

.pf-sub-faq {
  padding: 80px 56px;
  background: var(--pf-cream);
}

.pf-sub-faq-inner {
  max-width: 760px;
  margin: 0 auto;
}

.pf-sub-faq-inner .pf-sub-h2 { margin-bottom: 40px; }

/* ── Section : Autres services ───────────────────────────────────────────────── */

.pf-sub-others {
  padding: 64px 56px;
  background: #fff;
}

.pf-sub-others-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.pf-sub-others-intro {
  font-family: var(--pf-font-body);
  font-size: 16px;
  color: var(--pf-grey);
  line-height: 1.7;
  margin: 0 auto 36px;
  max-width: 520px;
}

.pf-sub-others-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  text-align: left;
}

.pf-sub-other-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--pf-cream);
  border: 0.5px solid var(--pf-blue-mid);
  border-radius: 14px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.pf-sub-other-card:hover {
  background: #fff;
  border-color: var(--pf-blue);
  box-shadow: 0 4px 20px rgba(0, 62, 211, 0.08);
}

.pf-sub-other-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--pf-blue-pale);
  color: var(--pf-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}

.pf-sub-other-card:hover .pf-sub-other-icon {
  background: var(--pf-blue);
  color: #fff;
}

.pf-sub-other-title {
  font-family: var(--pf-font-head);
  font-weight: 700;
  font-size: 15px;
  color: var(--pf-black);
  margin-bottom: 4px;
}

.pf-sub-other-desc {
  font-family: var(--pf-font-body);
  font-size: 13px;
  color: var(--pf-grey);
  line-height: 1.4;
}

.pf-sub-other-arrow {
  color: var(--pf-blue-mid);
  margin-left: auto;
  flex-shrink: 0;
  transition: color 0.2s, transform 0.2s;
}

.pf-sub-other-card:hover .pf-sub-other-arrow {
  color: var(--pf-blue);
  transform: translateX(4px);
}

/* =============================================================================
   PAGES CASE STUDY (.pf-case) — 1 page par client mis en avant
   ============================================================================= */

/* ── Hero ────────────────────────────────────────────────────────────────────── */

.pf-case-hero {
  padding: 64px 56px 56px;
  background: #fff;
}

.pf-case-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.pf-case-h1 {
  font-family: var(--pf-font-head);
  font-weight: 600;
  font-size: 56px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--pf-black);
  margin: 18px 0 16px;
}

.pf-case-tagline {
  font-family: var(--pf-font-body);
  font-size: 19px;
  color: var(--pf-grey);
  line-height: 1.6;
  max-width: 680px;
  margin-bottom: 36px;
}

/* Highlights inline (3 chips qualitatifs ou métriques) */
.pf-case-highlights {
  display: flex;
  align-items: stretch;
  gap: 0;
  flex-wrap: wrap;
}

.pf-case-highlight {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 32px;
  border-left: 1px solid var(--pf-border);
}

.pf-case-highlight:first-child { border-left: none; padding-left: 0; }

.pf-case-highlight-key {
  font-family: var(--pf-font-head);
  font-weight: 800;
  font-size: 28px;
  color: var(--pf-blue);
  line-height: 1.1;
}

.pf-case-highlight-key--text { font-size: 16px; color: var(--pf-black); }

.pf-case-highlight-label {
  font-family: var(--pf-font-body);
  font-size: 12px;
  color: var(--pf-grey);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── Section : Cover image (juste après le hero) ────────────────────────────── */

.pf-case-cover {
  padding: 0 56px 64px;
  background: #fff;
}

.pf-case-cover-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.pf-case-cover-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

/* ── Section : Le client ─────────────────────────────────────────────────────── */

.pf-case-client {
  padding: 64px 56px;
  background: var(--pf-cream);
}

.pf-case-client-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}

.pf-case-client-meta {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pf-case-client-meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pf-case-client-meta-label {
  font-family: var(--pf-font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pf-grey);
}

.pf-case-client-meta-value {
  font-family: var(--pf-font-head);
  font-weight: 600;
  font-size: 15px;
  color: var(--pf-black);
}

.pf-case-client-meta-value a { color: var(--pf-blue); text-decoration: underline; text-underline-offset: 3px; }

.pf-case-section-label {
  font-family: var(--pf-font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pf-blue);
  margin-bottom: 14px;
  display: block;
}

.pf-case-h2 {
  font-family: var(--pf-font-head) !important;
  font-weight: 800 !important;
  font-size: 32px !important;
  line-height: 1.2 !important;
  letter-spacing: -0.02em !important;
  color: var(--pf-black) !important;
  margin: 0 0 20px !important;
}

.pf-case-p {
  font-family: var(--pf-font-body);
  font-size: 16px;
  color: var(--pf-grey);
  line-height: 1.75;
  margin: 0 0 16px;
}

.pf-case-p:last-child { margin-bottom: 0; }

/* ── Section : Mission + approche ───────────────────────────────────────────── */

.pf-case-mission {
  padding: 80px 56px;
  background: #fff;
}

.pf-case-mission-inner {
  max-width: 900px;
  margin: 0 auto;
}

.pf-case-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 40px;
}

.pf-case-step {
  display: flex;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--pf-border);
}

.pf-case-step:last-child { border-bottom: none; }

.pf-case-step-num {
  font-family: var(--pf-font-head);
  font-weight: 800;
  font-size: 32px;
  color: var(--pf-blue-mid);
  line-height: 1;
  flex-shrink: 0;
  width: 56px;
}

.pf-case-step-title {
  font-family: var(--pf-font-head);
  font-weight: 700;
  font-size: 18px;
  color: var(--pf-black);
  margin: 0 0 8px;
}

.pf-case-step-text {
  font-family: var(--pf-font-body);
  font-size: 15px;
  color: var(--pf-grey);
  line-height: 1.7;
  margin: 0;
}

/* ── Section : Résultats + témoignage combinés ──────────────────────────────── */

.pf-case-result {
  padding: 80px 56px;
  background: var(--pf-cream);
}

.pf-case-result-inner {
  max-width: 900px;
  margin: 0 auto;
}

/* Métriques en cartes (cas avec chiffres) */
.pf-case-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.pf-case-metric {
  background: #fff;
  border: 1px solid var(--pf-blue-mid);
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}

.pf-case-metric-num {
  font-family: var(--pf-font-head);
  font-weight: 800;
  font-size: 36px;
  color: var(--pf-blue);
  line-height: 1;
}

.pf-case-metric-label {
  font-family: var(--pf-font-head);
  font-weight: 600;
  font-size: 14px;
  color: var(--pf-black);
}

.pf-case-metric-note {
  font-family: var(--pf-font-body);
  font-size: 12px;
  color: var(--pf-grey);
}

/* Livrables qualitatifs (cas sans chiffres) */
.pf-case-deliverables {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 48px;
}

.pf-case-deliverable {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 0.5px solid var(--pf-border);
  border-radius: 12px;
  padding: 18px 20px;
}

.pf-case-deliverable-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--pf-blue-pale);
  color: var(--pf-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pf-case-deliverable-text {
  font-family: var(--pf-font-body);
  font-size: 14px;
  color: var(--pf-black);
  line-height: 1.5;
  font-weight: 500;
}

/* Citation client mise en avant */
.pf-case-quote {
  background: #fff;
  border-left: 3px solid var(--pf-blue);
  border-radius: 0 16px 16px 0;
  padding: 36px 40px;
  margin: 0;
}

.pf-case-quote-stars {
  color: #F5A623;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.pf-case-quote-text {
  font-family: var(--pf-font-body);
  font-size: 18px;
  color: var(--pf-black);
  line-height: 1.7;
  font-style: italic;
  margin: 0 0 24px;
}

.pf-case-quote-author {
  display: flex;
  align-items: center;
  gap: 14px;
  font-style: normal;
}

.pf-case-quote-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--pf-blue);
  color: #fff;
  font-family: var(--pf-font-head);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.pf-case-quote-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pf-case-quote-author strong {
  display: block;
  font-family: var(--pf-font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--pf-black);
}

.pf-case-quote-author span {
  font-family: var(--pf-font-body);
  font-size: 13px;
  color: var(--pf-grey);
}

.pf-case-quote-date {
  font-family: var(--pf-font-body);
  font-size: 11px;
  color: var(--pf-grey-light);
  margin-left: auto;
  align-self: flex-start;
  flex-shrink: 0;
}

/* ── Section : Galerie placeholder ───────────────────────────────────────────── */

.pf-case-gallery {
  padding: 80px 56px;
  background: #fff;
}

.pf-case-gallery-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.pf-case-gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 16px;
  margin-top: 40px;
}

/* Variante : 1 seule grande image (LCQR avec mockup multi-pages) */
.pf-case-gallery-grid--single {
  grid-template-columns: 1fr;
  grid-template-rows: auto;
}

.pf-case-gallery-grid--single .pf-case-gallery-item {
  height: auto;
  aspect-ratio: 4 / 3;
}

/* Variante : split mockup mobile + screenshot desktop (Cartelis) */
.pf-case-gallery-grid--split {
  grid-template-columns: 1fr 1.6fr;
  grid-template-rows: 520px;
}

.pf-case-gallery-grid--split .pf-case-gallery-item:first-child {
  grid-row: auto;
}

/* Variante : 3 colonnes égales (mockups premium ou screenshots horizontaux) */
.pf-case-gallery-grid--equal {
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px;
}

.pf-case-gallery-grid--equal .pf-case-gallery-item:first-child {
  grid-row: auto;
}

.pf-case-gallery-item {
  background: var(--pf-cream);
  border: 1px solid var(--pf-border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pf-grey-light);
  font-family: var(--pf-font-body);
  font-size: 13px;
  overflow: hidden;
  position: relative;
}

.pf-case-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pf-case-gallery-item:first-child {
  grid-row: span 2;
}

.pf-case-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Section : Tech stack tags ──────────────────────────────────────────────── */

.pf-case-tech {
  padding: 56px 56px;
  background: var(--pf-cream);
  border-top: 1px solid var(--pf-border);
}

.pf-case-tech-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.pf-case-tech-label {
  font-family: var(--pf-font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pf-grey);
}

.pf-case-tech-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pf-case-tech-tag {
  font-family: var(--pf-font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--pf-black);
  background: #fff;
  border: 0.5px solid var(--pf-border);
  padding: 6px 14px;
  border-radius: 999px;
}

/* ── Section : Autres réalisations ──────────────────────────────────────────── */

.pf-case-others {
  padding: 80px 56px;
  background: #fff;
}

.pf-case-others-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.pf-case-others-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.pf-case-other-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
  background: var(--pf-cream);
  border: 0.5px solid var(--pf-border);
  border-radius: 14px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.pf-case-other-card:hover {
  background: #fff;
  border-color: var(--pf-blue-mid);
  transform: translateY(-3px);
}

.pf-case-other-tag {
  font-family: var(--pf-font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pf-blue);
}

.pf-case-other-name {
  font-family: var(--pf-font-head);
  font-weight: 700;
  font-size: 17px;
  color: var(--pf-black);
}

.pf-case-other-desc {
  font-family: var(--pf-font-body);
  font-size: 13px;
  color: var(--pf-grey);
  line-height: 1.5;
}

.pf-case-other-arrow {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--pf-font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--pf-blue);
  transition: gap 0.2s;
}

.pf-case-other-card:hover .pf-case-other-arrow { gap: 12px; }

/* =============================================================================
   PAGE : RÉALISATIONS (.pf-real)
   ============================================================================= */

/* ── Section 01 : Hero ───────────────────────────────────────────────────────── */

.pf-real-hero {
  padding: 72px 56px 64px;
  background: #fff;
}

.pf-real-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.pf-real-h1 {
  font-family: var(--pf-font-head);
  font-weight: 600;
  font-size: 64px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--pf-black);
  margin: 20px 0 20px;
}

.pf-real-h1-accent {
  color: var(--pf-blue);
}

.pf-real-subtitle {
  font-family: var(--pf-font-body);
  font-size: 18px;
  color: var(--pf-grey);
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 48px;
}

.pf-real-hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}

.pf-real-hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 40px;
}

.pf-real-hero-stat:first-child { padding-left: 0; }

.pf-real-hero-stat-num {
  font-family: var(--pf-font-head);
  font-weight: 800;
  font-size: 40px;
  color: var(--pf-blue);
  line-height: 1;
}

.pf-real-hero-stat-label {
  font-family: var(--pf-font-body);
  font-size: 13px;
  color: var(--pf-grey);
}

.pf-real-hero-stat-sep {
  width: 1px;
  height: 48px;
  background: var(--pf-border);
  flex-shrink: 0;
}

/* ── Section 02 : Filtres + Grille ──────────────────────────────────────────── */

.pf-real-grid-section {
  padding: 64px 56px 80px;
  background: var(--pf-cream);
}

.pf-real-grid-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* Filtres */
.pf-real-filters {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.pf-real-filter {
  font-family: var(--pf-font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--pf-grey);
  background: #fff;
  border: 1px solid var(--pf-border);
  border-radius: 999px;
  padding: 8px 20px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.pf-real-filter:hover {
  border-color: var(--pf-blue-mid);
  color: var(--pf-blue);
}

.pf-real-filter--active {
  background: var(--pf-blue);
  border-color: var(--pf-blue);
  color: #fff;
}

/* Grille */
.pf-real-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

/* Carte standard */
.pf-real-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 0.5px solid var(--pf-border);
  transition: box-shadow 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pf-real-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.10);
  transform: translateY(-4px);
}

.pf-real-card--hidden {
  display: none;
}

/* Carte featured — occupe 2 colonnes sur la 1ère ligne */
.pf-real-card--featured {
  grid-column: span 2;
  flex-direction: row;
  align-items: stretch;
}

.pf-real-card--featured .pf-real-card-visual {
  flex: 0 0 340px;
}

.pf-real-card--featured .pf-real-card-img {
  height: 100%;
  min-height: 260px;
}

/* Visuel */
.pf-real-card-visual {
  position: relative;
}

.pf-real-card-img {
  width: 100%;
  height: 200px;
  display: block;
  object-fit: cover;
}

/* Variante placeholder (gradient + SVG) — gardée au cas où */
.pf-real-card-img--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pf-real-card-tags {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

/* Tags */
.pf-real-tag {
  font-family: var(--pf-font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}

.pf-real-tag--blue   { background: var(--pf-blue-pale); color: var(--pf-blue); }
.pf-real-tag--green  { background: #edf7f0; color: #1a8a3c; }
.pf-real-tag--amber  { background: #fff4e0; color: #b85c00; }
.pf-real-tag--purple { background: #f3f0fd; color: #6c3cf5; }

/* Corps de la carte */
.pf-real-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

/* Pousse le CTA en bas pour aligner les cards de hauteurs differentes */
.pf-real-card-body .pf-real-card-cta,
.pf-real-card-body .pf-real-card-link {
  margin-top: auto;
  align-self: flex-start;
}

.pf-real-card-client {
  font-family: var(--pf-font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pf-blue);
}

.pf-real-card-title {
  font-family: var(--pf-font-head);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  color: var(--pf-black);
  margin: 0;
}

.pf-real-card--featured .pf-real-card-title {
  font-size: 22px;
}

.pf-real-card-desc {
  font-family: var(--pf-font-body);
  font-size: 14px;
  color: var(--pf-grey);
  line-height: 1.6;
  margin: 0;
}

/* Résultats en mini-stat */
.pf-real-card-results {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 4px;
  padding-top: 16px;
  border-top: 0.5px solid var(--pf-border);
}

.pf-real-card-result {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pf-real-card-result-num {
  font-family: var(--pf-font-head);
  font-weight: 800;
  font-size: 22px;
  color: var(--pf-blue);
  line-height: 1;
}

.pf-real-card-result-label {
  font-family: var(--pf-font-body);
  font-size: 11px;
  color: var(--pf-grey);
  line-height: 1.4;
}

.pf-real-card-cta {
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  padding: 10px 20px;
}

/* Lien simple pour cartes sans étude de cas dédiée */
.pf-real-card-link {
  margin-top: auto;
  align-self: flex-start;
  font-family: var(--pf-font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--pf-blue);
  text-decoration: none;
  transition: gap 0.2s, color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.pf-real-card-link:hover {
  color: var(--pf-blue-deep);
  gap: 8px;
}

/* ── Section : Témoignages mur d'avis (Réalisations) ───────────────────────── */

.pf-real-testi {
  padding: 100px 56px;
  background: var(--pf-cream);
}

.pf-real-testi-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.pf-real-testi-header {
  text-align: center;
  margin-bottom: 56px;
}

.pf-real-testi-title {
  font-family: var(--pf-font-head);
  font-weight: 800;
  font-size: 40px;
  letter-spacing: -0.02em;
  color: var(--pf-black);
  margin: 12px 0 28px;
}

.pf-real-testi-summary {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border: 1px solid var(--pf-border);
  border-radius: 999px;
  padding: 12px 28px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.pf-real-testi-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-right: 20px;
  border-right: 1px solid var(--pf-border);
}

.pf-real-testi-rating-num {
  font-family: var(--pf-font-head);
  font-weight: 800;
  font-size: 28px;
  color: var(--pf-black);
  line-height: 1;
}

.pf-real-testi-rating-stars {
  color: #F5A623;
  font-size: 16px;
  letter-spacing: 1px;
}

.pf-real-testi-rating-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}

.pf-real-testi-rating-meta strong {
  font-family: var(--pf-font-head);
  font-weight: 700;
  font-size: 14px;
  color: var(--pf-black);
}

.pf-real-testi-rating-meta span {
  font-family: var(--pf-font-body);
  font-size: 12px;
  color: var(--pf-grey);
}

/* Grille masonry-like */
.pf-real-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.pf-real-testi-card {
  background: #fff;
  border: 1px solid var(--pf-border);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 100%;
  transition: transform 0.2s, box-shadow 0.2s;
}

.pf-real-testi-card .pf-real-testi-author {
  margin-top: auto;
}

.pf-real-testi-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.pf-real-testi-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pf-real-testi-stars {
  color: #F5A623;
  font-size: 18px;
  letter-spacing: 2px;
}

.pf-real-testi-source {
  font-family: var(--pf-font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--pf-grey-light);
}

.pf-real-testi-quote {
  font-family: var(--pf-font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--pf-black);
  margin: 0;
  padding: 0;
  border: none;
  font-style: normal;
}

.pf-real-testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--pf-border);
}

.pf-real-testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--pf-blue);
  color: #fff;
  font-family: var(--pf-font-head);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.pf-real-testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pf-real-testi-author strong {
  display: block;
  font-family: var(--pf-font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--pf-black);
}

.pf-real-testi-author span {
  font-family: var(--pf-font-body);
  font-size: 12px;
  color: var(--pf-grey);
}

.pf-real-testi-footer {
  text-align: center;
  margin-top: 48px;
}

/* État vide */
.pf-real-empty {
  text-align: center;
  padding: 80px 24px;
  color: var(--pf-grey);
  font-family: var(--pf-font-body);
  font-size: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* ── Section 03 : Étude de cas ───────────────────────────────────────────────── */

.pf-real-case {
  padding: 96px 56px;
  background: #fff;
}

.pf-real-case-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.pf-real-case-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pf-real-case-title {
  font-family: var(--pf-font-head);
  font-weight: 800;
  font-size: 40px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--pf-black);
  margin: 0;
}

.pf-real-case-intro {
  font-family: var(--pf-font-body);
  font-size: 18px;
  color: var(--pf-grey);
  line-height: 1.7;
  margin: 0;
}

.pf-real-case-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.pf-real-case-col-title {
  font-family: var(--pf-font-head);
  font-weight: 700;
  font-size: 18px;
  color: var(--pf-black);
  margin: 0 0 12px;
}

.pf-real-case-col-text {
  font-family: var(--pf-font-body);
  font-size: 15px;
  color: var(--pf-grey);
  line-height: 1.7;
  margin: 0;
}

.pf-real-case-section-title {
  font-family: var(--pf-font-head);
  font-weight: 700;
  font-size: 22px;
  color: var(--pf-black);
  margin: 0 0 32px;
}

/* Timeline */
.pf-real-case-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pf-real-case-step {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 0.5px solid var(--pf-border);
}

.pf-real-case-step:last-child { border-bottom: none; }

.pf-real-case-step-num {
  font-family: var(--pf-font-head);
  font-weight: 800;
  font-size: 36px;
  color: var(--pf-blue-mid);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
}

.pf-real-case-step-title {
  font-family: var(--pf-font-head);
  font-weight: 700;
  font-size: 16px;
  color: var(--pf-black);
  margin: 0 0 8px;
}

.pf-real-case-step-text {
  font-family: var(--pf-font-body);
  font-size: 14px;
  color: var(--pf-grey);
  line-height: 1.7;
  margin: 0;
}

/* Résultats */
.pf-real-case-results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.pf-real-case-result-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 24px 20px;
  background: var(--pf-blue-pale);
  border: 1px solid var(--pf-blue-mid);
  border-radius: 14px;
  text-align: center;
  align-items: center;
}

.pf-real-case-result-num {
  font-family: var(--pf-font-head);
  font-weight: 800;
  font-size: 36px;
  color: var(--pf-blue);
  line-height: 1;
}

.pf-real-case-result-label {
  font-family: var(--pf-font-head);
  font-weight: 600;
  font-size: 14px;
  color: var(--pf-black);
}

.pf-real-case-result-note {
  font-family: var(--pf-font-body);
  font-size: 12px;
  color: var(--pf-grey);
  line-height: 1.4;
}

/* Citation client */
.pf-real-case-quote {
  background: var(--pf-cream);
  border-left: 3px solid var(--pf-blue);
  border-radius: 0 16px 16px 0;
  padding: 36px 40px;
  margin: 0;
}

.pf-real-case-quote-stars {
  color: #F5A623;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.pf-real-case-quote-text {
  font-family: var(--pf-font-body);
  font-size: 17px;
  color: var(--pf-black);
  line-height: 1.7;
  font-style: italic;
  margin: 0 0 24px;
}

.pf-real-case-quote-author {
  display: flex;
  align-items: center;
  gap: 14px;
  font-style: normal;
}

.pf-real-case-quote-author strong {
  display: block;
  font-family: var(--pf-font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--pf-black);
}

.pf-real-case-quote-author span {
  font-family: var(--pf-font-body);
  font-size: 13px;
  color: var(--pf-grey);
}

.pf-real-case-quote-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--pf-blue);
  color: #fff;
  font-family: var(--pf-font-head);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* =============================================================================
   PAGE : CONTACT (.pf-contact)
   ============================================================================= */

/* ── Section 01 : Hero ───────────────────────────────────────────────────────── */

.pf-contact-hero {
  padding: 72px 56px 56px;
  background: #fff;
}

.pf-contact-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.pf-contact-h1 {
  font-family: var(--pf-font-head);
  font-weight: 600;
  font-size: 56px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--pf-black);
  margin: 20px 0 16px;
}

.pf-contact-subtitle {
  font-family: var(--pf-font-body);
  font-size: 18px;
  color: var(--pf-grey);
  line-height: 1.7;
  margin-bottom: 32px;
}

.pf-contact-hero-reassurance {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  font-family: var(--pf-font-body);
  font-size: 13px;
  color: var(--pf-grey);
}

.pf-contact-hero-reassurance span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pf-contact-hero-reassurance svg { color: var(--pf-blue); flex-shrink: 0; }

/* ── Section 02 : Corps ──────────────────────────────────────────────────────── */

.pf-contact-body {
  padding: 56px 56px 80px;
  background: #fff;
}

.pf-contact-body-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 58% 38%;
  gap: 64px;
  align-items: start;
}

/* ── Tabs sélecteur de formulaire ─────────────────────────────────────────────── */

.pf-contact-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
}

.pf-contact-tab {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--pf-cream);
  border: 1.5px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.pf-contact-tab:hover {
  background: #fff;
  border-color: var(--pf-blue-mid);
}

.pf-contact-tab--active {
  background: #fff;
  border-color: var(--pf-blue);
  box-shadow: 0 4px 20px rgba(0, 62, 211, 0.08);
}

.pf-contact-tab-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--pf-blue-pale);
  color: var(--pf-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}

.pf-contact-tab--active .pf-contact-tab-icon {
  background: var(--pf-blue);
  color: #fff;
}

.pf-contact-tab-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.pf-contact-tab-title {
  font-family: var(--pf-font-head);
  font-weight: 600;
  font-size: 15px;
  color: var(--pf-black);
  line-height: 1.3;
}

.pf-contact-tab--active .pf-contact-tab-title { color: var(--pf-blue); }

.pf-contact-tab-sub {
  font-family: var(--pf-font-body);
  font-size: 12px;
  color: var(--pf-grey);
  line-height: 1.4;
}

/* ── Formulaires ─────────────────────────────────────────────────────────────── */

.pf-contact-form {
  display: none;
}

.pf-contact-form--active {
  display: block;
  animation: pf-form-in 0.25s ease;
}

@keyframes pf-form-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.pf-contact-form-intro {
  font-family: var(--pf-font-body);
  font-size: 15px;
  color: var(--pf-grey);
  line-height: 1.7;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 0.5px solid var(--pf-border);
}

/* ── Formulaire Formidable : style aligne sur le design system ─────────── */

.pf-contact-form .frm_forms,
.pf-contact-form .frm-show-form { background: transparent; padding: 0; }

.pf-contact-form fieldset {
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
}

.pf-contact-form .frm_screen_reader { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Layout grid 12 colonnes */
.pf-contact-form .frm_fields_container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px 18px;
}

.pf-contact-form .frm_form_field {
  grid-column: span 12;
  margin: 0;
  position: relative;
}

.pf-contact-form .frm_half  { grid-column: span 6; }
.pf-contact-form .frm6      { grid-column: span 6; }
.pf-contact-form .frm_full  { grid-column: span 12; }

/* Hide hidden + honeypot */
.pf-contact-form .frm_hidden_container,
.pf-contact-form #frm_field_37_container,
.pf-contact-form .frm_verify { display: none !important; }

/* Labels */
.pf-contact-form .frm_primary_label {
  display: block;
  font-family: var(--pf-font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--pf-black);
  margin-bottom: 4px;
}

/* Espacement vertical entre les champs (override Formidable) */
.pf-contact-form .frm_style_style-formidable.with_frm_style .form-field { margin-bottom: 2px; }

.pf-contact-form .frm_required {
  color: var(--pf-blue);
  font-weight: 700;
  margin-left: 2px;
}

/* Inputs, selects, textarea : meme style sobre */
.pf-contact-form input[type="text"],
.pf-contact-form input[type="email"],
.pf-contact-form input[type="tel"],
.pf-contact-form input[type="url"],
.pf-contact-form input[type="number"],
.pf-contact-form select,
.pf-contact-form textarea {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  font-family: var(--pf-font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--pf-black);
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 10px;
  padding: 8px 12px;
  line-height: 1.5;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  outline: 0;
  box-shadow: none;
  margin: 0;
  min-height: 36px;
}

.pf-contact-form textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.6;
}

.pf-contact-form input::placeholder,
.pf-contact-form textarea::placeholder {
  color: rgba(15, 23, 42, 0.40);
  font-style: normal;
}

.pf-contact-form input:hover,
.pf-contact-form select:hover,
.pf-contact-form textarea:hover { border-color: rgba(0, 62, 211, 0.30); }

.pf-contact-form input:focus,
.pf-contact-form select:focus,
.pf-contact-form textarea:focus {
  border-color: var(--pf-blue);
  box-shadow: 0 0 0 3px rgba(0, 62, 211, 0.12);
  background: #fff;
}

/* Select : chevron SVG personnalise */
.pf-contact-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23231F20' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 14px;
  padding-right: 44px;
  cursor: pointer;
}

/* Description sous le champ */
.pf-contact-form .frm_description {
  margin-top: 6px;
  font-family: var(--pf-font-body);
  font-size: 12.5px;
  color: var(--pf-grey);
  line-height: 1.5;
}

/* Erreurs */
.pf-contact-form .frm_error {
  margin-top: 6px;
  font-family: var(--pf-font-body);
  font-size: 12.5px;
  color: #C0392B;
}

.pf-contact-form .frm_blank_field input,
.pf-contact-form .frm_blank_field select,
.pf-contact-form .frm_blank_field textarea {
  border-color: rgba(192, 57, 43, 0.50);
  background: rgba(192, 57, 43, 0.03);
}

/* Checkbox / radio personnalises */
.pf-contact-form .vertical_radio .frm_primary_label,
.pf-contact-form #field_yr5ee_label,
.pf-contact-form [id$="_label"] { display: block; }

.pf-contact-form .frm_opt_container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.pf-contact-form .frm_checkbox,
.pf-contact-form .frm_radio {
  background: #FAFAFA;
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 10px;
  padding: 12px 14px;
  transition: border-color 0.18s ease, background 0.18s ease;
}

.pf-contact-form .frm_checkbox:hover,
.pf-contact-form .frm_radio:hover { border-color: rgba(0, 62, 211, 0.25); background: #fff; }

.pf-contact-form .frm_checkbox label,
.pf-contact-form .frm_radio label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--pf-font-body);
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--pf-black);
  cursor: pointer;
  margin: 0;
  font-weight: 400;
}

.pf-contact-form input[type="checkbox"],
.pf-contact-form input[type="radio"] {
  -webkit-appearance: none;
  appearance: none;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  background: #fff;
  border: 1.5px solid rgba(15, 23, 42, 0.30);
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease;
  position: relative;
  outline: 0;
  box-shadow: none;
}

.pf-contact-form input[type="checkbox"] { border-radius: 5px; }
.pf-contact-form input[type="radio"]    { border-radius: 50%; }

.pf-contact-form input[type="checkbox"]:hover,
.pf-contact-form input[type="radio"]:hover { border-color: var(--pf-blue); }

.pf-contact-form input[type="checkbox"]:focus-visible,
.pf-contact-form input[type="radio"]:focus-visible {
  border-color: var(--pf-blue);
  box-shadow: 0 0 0 3px rgba(0, 62, 211, 0.18);
}

.pf-contact-form input[type="checkbox"]:checked {
  background: var(--pf-blue);
  border-color: var(--pf-blue);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

.pf-contact-form input[type="radio"]:checked {
  border-color: var(--pf-blue);
  background: radial-gradient(circle, var(--pf-blue) 0% 45%, #fff 50% 100%);
}

/* Submit button : reprend la ligne pf-btn-primary du site, override Formidable */
.pf-contact-form .frm_submit { margin-top: 8px; padding: 0; }

.pf-contact-form .frm_style_style-formidable.with_frm_style input[type=submit],
.pf-contact-form .frm_style_style-formidable.with_frm_style .frm_submit input[type=button],
.pf-contact-form .frm_style_style-formidable.with_frm_style .frm_submit button,
.pf-contact-form .frm_button_submit,
.pf-contact-form button[type="submit"] {
  -webkit-appearance: none;
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: auto;
  background: var(--pf-blue);
  color: #fff;
  font-family: var(--pf-font-body);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  padding: 15px 32px;
  height: auto;
  min-height: 0;
  border: 0;
  border-radius: 100px;
  cursor: pointer;
  text-decoration: none;
  text-shadow: none;
  letter-spacing: 0.01em;
  vertical-align: middle;
  transition: background 0.2s ease;
  box-shadow: 0 8px 20px -8px rgba(0, 62, 211, 0.40);
  margin: 0;
}

.pf-contact-form .frm_style_style-formidable.with_frm_style input[type=submit]::after,
.pf-contact-form .frm_style_style-formidable.with_frm_style .frm_submit input[type=button]::after,
.pf-contact-form .frm_style_style-formidable.with_frm_style .frm_submit button::after,
.pf-contact-form .frm_button_submit::after,
.pf-contact-form button[type="submit"]::after {
  content: "";
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 6 15 12 9 18'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.2s ease;
}

.pf-contact-form .frm_style_style-formidable.with_frm_style input[type=submit]:hover,
.pf-contact-form .frm_style_style-formidable.with_frm_style .frm_submit input[type=button]:hover,
.pf-contact-form .frm_style_style-formidable.with_frm_style .frm_submit button:hover,
.pf-contact-form .frm_button_submit:hover,
.pf-contact-form button[type="submit"]:hover {
  background: var(--pf-blue-hover);
  border-color: var(--pf-blue-hover);
}

.pf-contact-form .frm_style_style-formidable.with_frm_style input[type=submit]:hover::after,
.pf-contact-form .frm_style_style-formidable.with_frm_style .frm_submit input[type=button]:hover::after,
.pf-contact-form .frm_style_style-formidable.with_frm_style .frm_submit button:hover::after,
.pf-contact-form .frm_button_submit:hover::after,
.pf-contact-form button[type="submit"]:hover::after { transform: translateX(3px); }

.pf-contact-form .frm_button_submit:focus-visible,
.pf-contact-form button[type="submit"]:focus-visible {
  outline: 2px solid var(--pf-blue);
  outline-offset: 3px;
}

/* Message confirmation Formidable */
.pf-contact-form .frm_message,
.pf-contact-form .frm_form_submit_loading { margin: 0; }

/* Responsive : passage en 1 colonne sous tablette */
@media (max-width: 640px) {
  .pf-contact-form .frm_fields_container { gap: 16px; }
  .pf-contact-form .frm_half,
  .pf-contact-form .frm6 { grid-column: span 12; }
  .pf-contact-form .frm_button_submit,
  .pf-contact-form button[type="submit"] { width: 100%; justify-content: center; }
}

/* ── Colonne droite ──────────────────────────────────────────────────────────── */

.pf-contact-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: sticky;
  top: 100px;
}

.pf-contact-info-bloc {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 24px;
  border-bottom: 0.5px solid var(--pf-border);
}

.pf-contact-info-bloc:last-child { border-bottom: none; }

.pf-contact-info-title {
  font-family: var(--pf-font-head);
  font-weight: 600;
  font-size: 16px;
  color: var(--pf-black);
  margin-bottom: 4px;
}

.pf-contact-email-link {
  font-family: var(--pf-font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--pf-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.pf-contact-email-link:hover { color: var(--pf-blue-deep); }

.pf-contact-info-note {
  font-family: var(--pf-font-body);
  font-size: 14px;
  color: var(--pf-grey);
  line-height: 1.6;
}

.pf-contact-calendly-btn {
  align-self: flex-start;
  font-size: 14px;
  padding: 10px 20px;
  margin-top: 4px;
}

.pf-contact-loc-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pf-contact-loc-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: var(--pf-font-body);
  font-size: 14px;
  color: var(--pf-grey);
  line-height: 1.5;
}

.pf-contact-loc-item svg { color: var(--pf-blue); flex-shrink: 0; margin-top: 2px; }

.pf-contact-dispo {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  padding: 16px 18px;
}

/* Variantes selon statut */
.pf-contact-dispo--open  { background: #E8F5EC; border-color: rgba(26, 138, 60, 0.20); }
.pf-contact-dispo--closed { background: #FFF4E0; border-color: rgba(184, 92, 0, 0.20); }

/* Point clignotant (vert si ouvert, ambre si ferme) */
.pf-contact-dispo-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
  position: relative;
}

.pf-contact-dispo--open .pf-contact-dispo-pulse {
  background: #1A8A3C;
  box-shadow: 0 0 0 0 rgba(26, 138, 60, 0.5);
  animation: pf-contact-pulse 2.2s infinite;
}

.pf-contact-dispo--closed .pf-contact-dispo-pulse {
  background: #B85C00;
}

@keyframes pf-contact-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(26, 138, 60, 0.55); }
  70%  { box-shadow: 0 0 0 9px rgba(26, 138, 60, 0); }
  100% { box-shadow: 0 0 0 0 rgba(26, 138, 60, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .pf-contact-dispo-pulse { animation: none; }
}

.pf-contact-dispo-title {
  font-family: var(--pf-font-head);
  font-weight: 700;
  font-size: 14px;
  color: var(--pf-black);
  margin-bottom: 6px;
  letter-spacing: 0;
}

.pf-contact-dispo--open .pf-contact-dispo-title  { color: #1A8A3C; }
.pf-contact-dispo--closed .pf-contact-dispo-title { color: #B85C00; }

.pf-contact-dispo-text {
  font-family: var(--pf-font-body);
  font-size: 13px;
  color: var(--pf-grey);
  line-height: 1.6;
}

.pf-contact-faq { display: flex; flex-direction: column; gap: 8px; }

/* FAQ contact : compacter padding + reduire la font de la reponse */
.pf-contact-faq .pf-faq-q { font-size: 14px; }
.pf-contact-faq .pf-faq-list .pf-faq-btn { padding: 16px 22px; }
.pf-contact-faq .pf-faq-answer { padding: 0 22px; }
.pf-contact-faq .pf-faq-item.open .pf-faq-answer { padding: 0 22px 16px; }
.pf-contact-faq .pf-faq-answer p { font-size: 13px; }

/* ── Section 03 : Bande de réassurance ──────────────────────────────────────── */

.pf-contact-strip {
  background: var(--pf-cream);
  padding: 56px;
}

.pf-contact-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.pf-contact-strip-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.pf-contact-strip-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  color: var(--pf-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 0.5px solid var(--pf-blue-mid);
}

.pf-contact-strip-label {
  font-family: var(--pf-font-head);
  font-weight: 600;
  font-size: 14px;
  color: var(--pf-black);
  margin-bottom: 4px;
}

.pf-contact-strip-note {
  font-family: var(--pf-font-body);
  font-size: 13px;
  color: var(--pf-grey);
  line-height: 1.5;
}

/* ── Section 04 : Micro-CTA "Pas encore prêt" ───────────────────────────────── */

.pf-contact-explore {
  padding: 56px;
  background: #fff;
}

.pf-contact-explore-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.pf-contact-explore-title {
  font-family: var(--pf-font-head);
  font-weight: 700;
  font-size: 24px;
  color: var(--pf-black);
  margin-bottom: 24px;
  text-align: center;
}

.pf-contact-explore-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.pf-contact-explore-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  background: var(--pf-cream);
  border: 0.5px solid var(--pf-blue-mid);
  border-radius: 12px;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.pf-contact-explore-card:hover {
  background: #fff;
  border-color: var(--pf-blue);
  box-shadow: 0 4px 16px rgba(0, 62, 211, 0.08);
}

.pf-contact-explore-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--pf-blue-pale);
  color: var(--pf-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}

.pf-contact-explore-card:hover .pf-contact-explore-icon {
  background: var(--pf-blue);
  color: #fff;
}

.pf-contact-explore-card-title {
  font-family: var(--pf-font-head);
  font-weight: 600;
  font-size: 14px;
  color: var(--pf-black);
  margin-bottom: 4px;
}

.pf-contact-explore-card-sub {
  font-family: var(--pf-font-body);
  font-size: 13px;
  color: var(--pf-grey);
  line-height: 1.5;
}

.pf-contact-explore-arrow {
  color: var(--pf-blue-mid);
  flex-shrink: 0;
  margin-left: auto;
  transition: color 0.2s, transform 0.2s;
}

.pf-contact-explore-card:hover .pf-contact-explore-arrow {
  color: var(--pf-blue);
  transform: translateX(3px);
}

/* =============================================================================
   RESPONSIVE — toutes les pages internes
   ============================================================================= */

@media (max-width: 768px) {

  /* ── Shared components ─────────────────────────────────────────────────────── */

  /* Stats strip */
  .pf-stats-strip { padding: 48px 20px; }
  .pf-stats-strip-inner { flex-wrap: wrap; gap: 32px; }
  .pf-stat-item,
  .pf-about .pf-stat-item { flex: 1 1 40%; padding: 0 12px; }
  .pf-stat-num { font-size: 40px; }
  .pf-stat-sep { display: none; }

  /* Testi */
  .pf-testi-section { padding: 60px 20px; }
  .pf-testi-grid { grid-template-columns: 1fr; }

  /* Testi split */
  .pf-testi-section--split { padding: 60px 20px; }
  .pf-testi-split { grid-template-columns: 1fr; gap: 36px; }
  .pf-testi-section--split .pf-troyes-h2 { font-size: 32px; }
  .pf-testi-visual-frame { aspect-ratio: 4 / 3; max-height: 360px; }
  .pf-testi-visual-badge { bottom: 14px; left: 14px; padding: 10px 14px; min-width: 120px; }
  .pf-testi-visual-badge-num { font-size: 22px; }
  .pf-testi-card--v2 { padding: 22px 22px 20px 26px; }
  .pf-testi-card--v2 .pf-testi-quote { font-size: 14.5px; }

  /* CTA dark */
  .pf-cta-dark { padding: 80px 20px; }
  .pf-cta-dark-title { font-size: 32px; }
  .pf-cta-dark-sub { font-size: 16px; }
  .pf-cta-dark-accent { display: none; } /* parasite sur petit ecran */

  /* ── À propos ──────────────────────────────────────────────────────────────── */

  .pf-about .pf-about-hero { padding: 60px 20px; }
  .pf-about .pf-about-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .pf-about .pf-about-hero-photo { aspect-ratio: 4/3; }
  .pf-about .pf-about-hero-badge { white-space: normal; text-align: center; }
  .pf-about .pf-about-h1 { font-size: 36px; }
  .pf-about .pf-about-accroche { font-size: 17px; }
  .pf-about .pf-about-hero-ctas { flex-direction: column; }
  .pf-about .pf-about-hero-ctas .pf-btn-primary,
  .pf-about .pf-about-hero-ctas .pf-btn-secondary { text-align: center; justify-content: center; }

  .pf-about .pf-about-parcours { padding: 60px 20px; }
  .pf-about .pf-about-parcours-inner { grid-template-columns: 1fr; gap: 40px; }
  .pf-about .pf-about-h2 { font-size: 30px; }

  .pf-about .pf-about-diff { padding: 60px 20px; }
  .pf-about .pf-about-diff-grid { grid-template-columns: 1fr; }

  .pf-about .pf-about-clients { padding: 60px 20px; }

  .pf-about .pf-about-valeurs { padding: 60px 20px; }
  .pf-about .pf-about-valeur { flex-direction: column; gap: 16px; }

  .pf-about .pf-about-faq { padding: 60px 20px; }

  /* ── Agence web Troyes ─────────────────────────────────────────────────────── */

  .pf-troyes .pf-troyes-hero { padding: 60px 20px; }
  .pf-troyes .pf-troyes-hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .pf-troyes .pf-troyes-h1 { font-size: 36px; }
  .pf-troyes .pf-troyes-hero-ctas { flex-direction: column; }
  .pf-troyes .pf-troyes-hero-ctas .pf-btn-primary,
  .pf-troyes .pf-troyes-hero-ctas .pf-btn-secondary { justify-content: center; text-align: center; }
  .pf-troyes .pf-troyes-hero-img { transform: none; }
  .pf-troyes .pf-troyes-badge-amber { right: 0; }
  .pf-troyes .pf-troyes-badge-local { left: 0; }

  .pf-troyes .pf-troyes-ancrage { padding: 60px 20px; }
  .pf-troyes .pf-troyes-h2 { font-size: 28px; }

  .pf-troyes .pf-troyes-services { padding: 60px 20px; }
  .pf-troyes .pf-troyes-services-grid { grid-template-columns: 1fr; }

  .pf-troyes .pf-troyes-ia { padding: 60px 20px; }
  .pf-troyes .pf-troyes-ia-grid { grid-template-columns: 1fr; }
  .pf-troyes .pf-troyes-ia-accent { display: none; } /* parasite sur petit ecran */

  .pf-troyes .pf-troyes-caseclient { padding: 60px 20px; }
  .pf-troyes .pf-troyes-caseclient-inner { grid-template-columns: 1fr; }
  .pf-troyes .pf-troyes-caseclient-visual { display: none; }
  .pf-troyes .pf-troyes-cc-stats { flex-wrap: wrap; gap: 20px; }

  .pf-troyes .pf-troyes-secteurs { padding: 60px 20px; }

  .pf-troyes .pf-troyes-comparatif { padding: 60px 20px; }
  .pf-troyes .pf-troyes-table { font-size: 13px; }
  .pf-troyes .pf-troyes-table th,
  .pf-troyes .pf-troyes-table td { padding: 12px 14px; }

  .pf-troyes .pf-troyes-faq { padding: 60px 20px; }

  .pf-troyes .pf-troyes-zone { padding: 60px 20px; }

  /* ── Services ──────────────────────────────────────────────────────────────── */

  .pf-services .pf-srv-hero { padding: 60px 20px 48px; }
  .pf-services .pf-srv-h1 { font-size: 36px; }
  .pf-services .pf-srv-h2 { font-size: 28px; }

  .pf-services .pf-srv-ia-banner { padding: 48px 20px; }
  .pf-services .pf-srv-ia-cols { grid-template-columns: 1fr; gap: 32px; }

  .pf-services .pf-srv-service { padding: 60px 20px; }
  .pf-services .pf-srv-service-inner { grid-template-columns: 1fr; gap: 40px; }
  .pf-services .pf-srv-service--reversed .pf-srv-service-inner { grid-template-columns: 1fr; }
  .pf-services .pf-srv-service--reversed .pf-srv-service-visual { order: 0; }
  .pf-services .pf-srv-service-ctas { flex-direction: column; }
  .pf-services .pf-srv-service-ctas .pf-btn-primary,
  .pf-services .pf-srv-service-ctas .pf-btn-outline { justify-content: center; text-align: center; }
  .pf-services .pf-srv-mockup-img { transform: none; }
  .pf-services .pf-srv-float-badge--amber { right: 0; }
  .pf-services .pf-srv-float-badge--white { left: 0; }

  .pf-services .pf-srv-comparatif { padding: 60px 20px; }
  .pf-services .pf-srv-table { font-size: 13px; }
  .pf-services .pf-srv-table th,
  .pf-services .pf-srv-table td { padding: 12px 14px; }

  .pf-services .pf-srv-stats { padding: 48px 20px; }
  .pf-services .pf-srv-stat-num { font-size: 36px; }

  .pf-services .pf-srv-process { padding: 60px 20px; }
  .pf-services .pf-srv-process-steps { flex-direction: column; gap: 16px; }
  .pf-services .pf-srv-process-connector { transform: rotate(90deg); }

  .pf-services .pf-srv-faq { padding: 60px 20px; }

  /* ── Sous-pages Services ────────────────────────────────────────────────────── */

  .pf-sub-hero { padding: 48px 20px 56px; }
  .pf-sub-h1 { font-size: 38px; }
  .pf-sub-subtitle { font-size: 16px; }
  .pf-sub-hero-quick { flex-direction: column; gap: 12px; }
  .pf-sub-hero-ctas { flex-direction: column; }
  .pf-sub-hero-ctas .pf-btn-primary,
  .pf-sub-hero-ctas .pf-btn-outline,
  .pf-sub-hero-ctas .pf-btn-secondary {
    justify-content: center;
    text-align: center;
    width: 100%;
  }

  .pf-sub-h2 { font-size: 28px; }

  .pf-sub-why { padding: 48px 20px; }
  .pf-sub-why-inner { grid-template-columns: 1fr; gap: 40px; }
  .pf-sub-why-vs { grid-template-columns: 1fr; }
  .pf-sub-why-visual { display: none; }

  .pf-sub-process { padding: 48px 20px; }
  .pf-sub-steps { flex-direction: column; gap: 32px; overflow-x: visible; }
  .pf-sub-step-arrow { transform: rotate(90deg); margin: 0 auto; }

  .pf-sub-inclus { padding: 48px 20px; }
  .pf-sub-inclus-grid { grid-template-columns: 1fr; }

  .pf-sub-tarifs { padding: 48px 20px; }
  .pf-sub-tarifs-grid { grid-template-columns: 1fr; gap: 24px; }
  .pf-sub-tarif-card--featured { order: -1; }

  .pf-sub-faq { padding: 48px 20px; }

  .pf-sub-others { padding: 48px 20px; }
  .pf-sub-others-grid { grid-template-columns: 1fr; }

  /* ── Case study (.pf-case) ──────────────────────────────────────────────────── */

  .pf-case-hero { padding: 48px 20px 40px; }
  .pf-case-cover { padding: 0 20px 40px; }
  .pf-case-cover-img { height: 280px; border-radius: 12px; }
  .pf-case-h1 { font-size: 36px; }
  .pf-case-tagline { font-size: 16px; }
  .pf-case-highlights { flex-direction: column; gap: 16px; }
  .pf-case-highlight { padding: 0; border-left: none; }

  .pf-case-client { padding: 48px 20px; }
  .pf-case-client-inner { grid-template-columns: 1fr; gap: 32px; }

  .pf-case-mission { padding: 56px 20px; }
  .pf-case-h2 { font-size: 26px; }
  .pf-case-step { gap: 16px; }
  .pf-case-step-num { font-size: 24px; width: 40px; }

  .pf-case-result { padding: 56px 20px; }
  .pf-case-metrics { grid-template-columns: 1fr 1fr; }
  .pf-case-deliverables { grid-template-columns: 1fr; }
  .pf-case-quote { padding: 24px 20px; }
  .pf-case-quote-text { font-size: 16px; }
  .pf-case-quote-author { flex-wrap: wrap; }
  .pf-case-quote-date { margin-left: 0; width: 100%; margin-top: 8px; }

  .pf-case-gallery { padding: 56px 20px; }
  .pf-case-gallery-grid { grid-template-columns: 1fr; grid-template-rows: 220px 220px 220px; }
  .pf-case-gallery-item:first-child { grid-row: span 1; }
  .pf-case-gallery-grid--single { grid-template-rows: auto; }
  .pf-case-gallery-grid--split { grid-template-columns: 1fr; grid-template-rows: 360px 220px; }
  .pf-case-gallery-grid--equal { grid-template-columns: 1fr; grid-template-rows: 220px 220px 220px; }

  .pf-case-tech { padding: 32px 20px; }
  .pf-case-tech-inner { flex-direction: column; align-items: flex-start; gap: 12px; }

  .pf-case-others { padding: 56px 20px; }
  .pf-case-others-grid { grid-template-columns: 1fr; }

  /* ── Réalisations ───────────────────────────────────────────────────────────── */

  .pf-real-hero { padding: 48px 20px 48px; }
  .pf-real-h1 { font-size: 38px; }
  .pf-real-subtitle { font-size: 16px; }
  .pf-real-hero-stats { flex-wrap: wrap; gap: 24px; }
  .pf-real-hero-stat { padding: 0; }
  .pf-real-hero-stat-sep { display: none; }
  .pf-real-hero-stat-num { font-size: 32px; }

  .pf-real-grid-section { padding: 40px 20px 56px; }
  .pf-real-grid { grid-template-columns: 1fr; }

  .pf-real-testi { padding: 56px 20px; }
  .pf-real-testi-title { font-size: 28px; }
  .pf-real-testi-summary { flex-direction: column; gap: 12px; padding: 16px 24px; }
  .pf-real-testi-rating { padding-right: 0; border-right: none; padding-bottom: 12px; border-bottom: 1px solid var(--pf-border); }
  .pf-real-testi-grid { grid-template-columns: 1fr; }
  .pf-real-testi-card { padding: 24px; }
  .pf-real-card--featured { flex-direction: column; grid-column: span 1; }
  .pf-real-card--featured .pf-real-card-visual { flex: none; }
  .pf-real-card--featured .pf-real-card-img { height: 200px; }
  .pf-real-card--featured .pf-real-card-title { font-size: 18px; }

  .pf-real-case { padding: 56px 20px; }
  .pf-real-case-title { font-size: 28px; }
  .pf-real-case-cols { grid-template-columns: 1fr; gap: 28px; }
  .pf-real-case-results-grid { grid-template-columns: 1fr 1fr; }
  .pf-real-case-quote { padding: 24px 20px; }

  /* ── Contact ────────────────────────────────────────────────────────────────── */

  .pf-contact-hero { padding: 48px 20px 40px; }
  .pf-contact-h1 { font-size: 36px; }
  .pf-contact-subtitle { font-size: 16px; }
  .pf-contact-hero-reassurance { flex-direction: column; align-items: flex-start; gap: 10px; }

  .pf-contact-body { padding: 40px 20px 64px; }
  .pf-contact-body-inner { grid-template-columns: 1fr; gap: 48px; }

  .pf-contact-tabs { flex-direction: column; gap: 10px; }
  .pf-contact-tab { width: 100%; }

  .pf-contact-strip { padding: 40px 20px; }
  .pf-contact-strip-inner { grid-template-columns: 1fr 1fr; gap: 24px; }

  .pf-contact-explore { padding: 40px 20px; }
  .pf-contact-explore-grid { grid-template-columns: 1fr; }

}

/* =============================================================================
   PAGES LEGALES (Mentions, Politique de confidentialite, CGV, Cookies, etc.)
   Template : templates/page-legal.php — contenu edite via Gutenberg.
   ============================================================================= */

.pf-legal {
  background: #fff;
  color: var(--pf-black);
}

/* ── HERO ────────────────────────────────────────────────────────────────────── */

.pf-legal-hero {
  padding: 72px 56px 48px;
  background: var(--pf-cream);
  border-bottom: 1px solid var(--pf-border);
}

.pf-legal-hero-inner {
  max-width: 760px;
  margin: 0 auto;
}

.pf-legal-hero .pf-blog-breadcrumb { margin-bottom: 20px; }
.pf-legal-hero .pf-badge { margin-bottom: 20px; }

.pf-legal-h1 {
  font-family: var(--pf-font-head);
  font-weight: 700;
  font-size: clamp(32px, 4.5vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--pf-black);
  margin: 0 0 16px;
}

.pf-legal-meta {
  font-family: var(--pf-font-body);
  font-size: 13px;
  color: var(--pf-grey);
  margin: 0;
}

/* ── CONTENU ─────────────────────────────────────────────────────────────────── */

.pf-legal-body {
  padding: 64px 56px 80px;
  background: #fff;
}

.pf-legal-content {
  max-width: 760px;
  margin: 0 auto;
  font-family: var(--pf-font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--pf-black);
}

.pf-legal-content > * { margin-bottom: 22px; }
.pf-legal-content > *:last-child { margin-bottom: 0; }

.pf-legal-content h2 {
  font-family: var(--pf-font-head);
  font-weight: 700;
  font-size: clamp(20px, 2.4vw, 24px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--pf-black);
  margin: 48px 0 16px;
  padding-top: 32px;
  border-top: 1px solid var(--pf-border);
}

.pf-legal-content > h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.pf-legal-content h3 {
  font-family: var(--pf-font-head);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.35;
  color: var(--pf-black);
  margin: 32px 0 12px;
}

.pf-legal-content h4 {
  font-family: var(--pf-font-head);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.4;
  color: var(--pf-black);
  margin: 24px 0 8px;
}

.pf-legal-content p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--pf-black);
}

.pf-legal-content p strong { font-weight: 600; }

.pf-legal-content a {
  color: var(--pf-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 0.2s, text-decoration-thickness 0.2s;
}

.pf-legal-content a:hover {
  color: var(--pf-blue-hover);
  text-decoration-thickness: 2px;
}

.pf-legal-content ul,
.pf-legal-content ol {
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pf-legal-content li {
  font-size: 16px;
  line-height: 1.6;
}

.pf-legal-content li::marker {
  color: var(--pf-grey-light);
}

.pf-legal-content blockquote {
  margin: 24px 0;
  padding: 16px 24px;
  border-left: 3px solid var(--pf-blue);
  background: var(--pf-cream);
  font-style: italic;
  color: var(--pf-grey);
}

.pf-legal-content blockquote p {
  margin: 0 !important;
  font-size: 15px;
  line-height: 1.6;
}

/* Tables (donnees editeur, hebergeur, DPO, etc.) */
.pf-legal-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin: 24px 0;
}

.pf-legal-content th,
.pf-legal-content td {
  padding: 12px 16px;
  border: 1px solid var(--pf-border);
  text-align: left;
  vertical-align: top;
}

.pf-legal-content th {
  background: var(--pf-cream);
  font-family: var(--pf-font-head);
  font-weight: 700;
  font-size: 13px;
  color: var(--pf-black);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.pf-legal-content code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 13px;
  background: var(--pf-cream);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--pf-blue-deep);
}

.pf-legal-content hr {
  border: none;
  border-top: 1px solid var(--pf-border);
  margin: 40px 0;
}

/* ── RESPONSIVE ──────────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  .pf-legal-hero { padding: 56px 24px 36px; }
  .pf-legal-body { padding: 48px 24px 64px; }
  .pf-legal-content { font-size: 15px; }
  .pf-legal-content p,
  .pf-legal-content li { font-size: 15px; }
  .pf-legal-content h2 { margin-top: 40px; padding-top: 28px; }
  .pf-legal-content table { font-size: 13px; }
  .pf-legal-content th,
  .pf-legal-content td { padding: 10px 12px; }
}

/* =============================================================================
   CTA FINAL CENTRE — variante autonome (utilisee par le blog, la page Legale,
   et toute autre page non-home qui veut afficher le CTA centre).

   N'a pas de prefixe .pf-home : c'est un composant standalone qui ne depend
   d'aucun parent. Reproduit le style du CTA home (fond bleu profond, contenu
   centre) en assumant que les styles de paraflow-home.css n'ont pas matche.
   ============================================================================= */

.pf-finalcta-section--centered {
  display: block;
  background: var(--pf-blue-deep);
  overflow: hidden;
}

.pf-finalcta-section--centered .pf-finalcta-grid {
  width: 100%;
  display: block;
}

.pf-finalcta-section--centered .pf-finalcta-left {
  position: relative;
  background: transparent;
  padding: 96px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pf-finalcta-section--centered .pf-finalcta-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
}

.pf-finalcta-section--centered .pf-finalcta-title {
  font-family: var(--pf-font-head);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0;
  text-align: center;
}

.pf-finalcta-section--centered .pf-finalcta-sub {
  font-family: var(--pf-font-body);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.pf-finalcta-section--centered .pf-finalcta-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.pf-finalcta-section--centered .pf-finalcta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pf-blue);
  color: #fff;
  font-family: var(--pf-font-body);
  font-size: 15px;
  font-weight: 500;
  padding: 15px 30px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s ease;
  box-shadow: 0 4px 20px rgba(0, 62, 211, 0.3);
}

.pf-finalcta-section--centered .pf-finalcta-btn-primary,
.pf-finalcta-section--centered .pf-finalcta-btn-primary:hover,
.pf-finalcta-section--centered .pf-finalcta-btn-primary:focus,
.pf-finalcta-section--centered .pf-finalcta-btn-primary:active { color: #fff; }

.pf-finalcta-section--centered .pf-finalcta-btn-primary:hover {
  background: var(--pf-blue-hover);
}

.pf-finalcta-section--centered .pf-finalcta-btn-primary svg {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.pf-finalcta-section--centered .pf-finalcta-btn-primary:hover svg {
  transform: translateX(3px);
}

.pf-finalcta-section--centered .pf-finalcta-btn-secondary {
  font-family: var(--pf-font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  padding-left: 4px;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: color 0.2s ease;
}

.pf-finalcta-section--centered .pf-finalcta-btn-secondary:hover,
.pf-finalcta-section--centered .pf-finalcta-btn-secondary:focus {
  color: rgba(255, 255, 255, 0.9);
}

.pf-finalcta-section--centered .pf-section-label {
  color: rgba(255, 255, 255, 0.5);
}

.pf-finalcta-section--centered .pf-finalcta-right {
  display: none;
}

@media (max-width: 880px) {
  .pf-finalcta-section--centered .pf-finalcta-left {
    padding: 64px 24px;
  }
  .pf-finalcta-section--centered .pf-finalcta-content {
    gap: 20px;
  }
}
