/**
 * BTP Jobs Pro — Frontend CSS Premium v2.0 HAUTE GAMME
 * Direction : luxe éditorial × industrie de précision
 */

/* ============================================================
   FONTS — Playfair Display (prestige serif) + DM Sans + DM Mono
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,900;1,400;1,500;1,700&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300;1,9..40,400&family=DM+Mono:ital,wght@0,300;0,400;0,500;1,300&display=swap');

/* ============================================================
   DESIGN TOKENS — PALETTE PRESTIGE
   ============================================================ */
:root {
  /* Palette obsidienne & or patiné */
  --bjp-ink:        #080C12;
  --bjp-graphite:   #141920;
  --bjp-steel:      #3A4455;
  --bjp-concrete:   #7A8496;
  --bjp-fog:        #E4E7ED;
  --bjp-paper:      #F5F4F0;
  --bjp-cream:      #FAF9F5;
  --bjp-bone:       #FFFFFF;

  /* Or aristocratique — accent exclusif */
  --bjp-signal:     #BFA054;
  --bjp-signal-lt:  #D4B87A;
  --bjp-signal-dk:  #8C7038;
  --bjp-signal-bg:  rgba(191,160,84,0.07);
  --bjp-blueprint:  #16304F;
  --bjp-rust:       #7A3520;

  /* Sémantique */
  --bjp-success:    #275A38;
  --bjp-warning:    #B8900E;
  --bjp-danger:     #7D2319;

  /* Typographie prestige */
  --bjp-display:    'Playfair Display', 'Times New Roman', Georgia, serif;
  --bjp-body:       'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --bjp-mono:       'DM Mono', 'Courier New', monospace;

  /* Rayons épurés */
  --bjp-r-sm:       1px;
  --bjp-r-md:       3px;
  --bjp-r-lg:       6px;
  --bjp-r-xl:       12px;

  /* Ombres sculptées */
  --bjp-shadow-sm:  0 1px 3px rgba(8, 12, 18, 0.06);
  --bjp-shadow:     0 4px 12px rgba(8, 12, 18, 0.08), 0 1px 3px rgba(8, 12, 18, 0.05);
  --bjp-shadow-lg:  0 16px 40px rgba(8, 12, 18, 0.12), 0 4px 12px rgba(8, 12, 18, 0.07);
  --bjp-shadow-xl:  0 32px 80px rgba(8, 12, 18, 0.18), 0 8px 24px rgba(8, 12, 18, 0.10);
  --bjp-shadow-gold: 0 8px 32px rgba(191, 160, 84, 0.20);

  /* Transitions */
  --bjp-ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --bjp-ease-out:   cubic-bezier(0.0, 0.0, 0.2, 1.0);
  --bjp-duration:   0.22s;
}


/* ============================================================
   RESET & BASE
   ============================================================ */
.btpjp-search-app,
.btpjp-job-single,
.btpjp-auth-container,
.btpjp-dashboard,
.btpjp-pricing,
.btpjp-archive-wrapper {
  font-family: var(--bjp-body);
  color: var(--bjp-ink);
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'cv11', 'ss01';
}

.btpjp-search-app *,
.btpjp-job-single *,
.btpjp-auth-container *,
.btpjp-dashboard *,
.btpjp-pricing * { box-sizing: border-box; }

/* Liens par défaut */
.btpjp-search-app a,
.btpjp-job-single a,
.btpjp-dashboard a,
.btpjp-auth-container a,
.btpjp-pricing a {
  color: var(--bjp-ink);
  text-decoration: none;
  transition: color 0.18s ease;
}

/* ============================================================
   TYPOGRAPHIE — DISPLAY
   ============================================================ */
.btpjp-display {
  font-family: var(--bjp-display);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.95;
  text-transform: uppercase;
}

.btpjp-overline {
  font-family: var(--bjp-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bjp-steel);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btpjp-overline::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--bjp-ink);
  display: inline-block;
}

/* ============================================================
   HERO BANDEAU DE RECHERCHE
   ============================================================ */
.btpjp-search-app {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

.btpjp-search-bar {
  position: relative;
  background: var(--bjp-ink);
  color: var(--bjp-paper);
  padding: 56px 48px 40px;
  margin-bottom: 48px;
  overflow: hidden;
  border-radius: var(--bjp-r-md);
}

/* Texture chantier subtile en arrière-plan */
.btpjp-search-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent 0px,
      transparent 8px,
      rgba(244, 196, 48, 0.04) 8px,
      rgba(244, 196, 48, 0.04) 9px
    );
  pointer-events: none;
}

.btpjp-search-bar::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 200px;
  height: 6px;
  background: var(--bjp-signal);
}

.btpjp-search-bar > * { position: relative; z-index: 1; }

.btpjp-search-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
  gap: 24px;
  flex-wrap: wrap;
}

.btpjp-search-title {
  font-family: var(--bjp-display);
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0.005em;
  margin: 0;
  text-transform: uppercase;
  color: var(--bjp-paper);
}

.btpjp-search-title .accent {
  color: var(--bjp-signal);
  font-style: italic;
}

.btpjp-search-subtitle {
  font-family: var(--bjp-mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  color: rgba(247, 247, 244, 0.6);
  text-transform: uppercase;
  margin: 0 0 12px 0;
}

.btpjp-search-meta {
  font-family: var(--bjp-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--bjp-signal);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.btpjp-search-meta::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bjp-signal);
  box-shadow: 0 0 0 4px rgba(244, 196, 48, 0.2);
  animation: btpjp-pulse 2s ease-in-out infinite;
}

@keyframes btpjp-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(244, 196, 48, 0.5); }
  50% { box-shadow: 0 0 0 8px rgba(244, 196, 48, 0); }
}

.btpjp-search-grid {
  display: grid;
  grid-template-columns: 2.4fr 1.2fr 1fr 1fr auto;
  gap: 1px;
  background: rgba(247, 247, 244, 0.12);
  padding: 1px;
  border-radius: var(--bjp-r-md);
}

.btpjp-field {
  position: relative;
  background: var(--bjp-paper);
  display: flex;
  align-items: center;
  padding: 0 16px 0 14px;
  height: 56px;
  transition: background 0.18s ease;
}

.btpjp-field:hover { background: var(--bjp-bone); }

.btpjp-field:first-child { border-top-left-radius: 3px; border-bottom-left-radius: 3px; }

.btpjp-field input,
.btpjp-field select {
  border: 0 !important;
  outline: 0 !important;
  background: transparent;
  width: 100%;
  height: 100%;
  font-size: 14px;
  font-weight: 500;
  color: var(--bjp-ink);
  padding: 0 0 0 8px;
  font-family: inherit;
  letter-spacing: -0.01em;
  appearance: none;
}

.btpjp-field input::placeholder { color: var(--bjp-concrete); font-weight: 400; }

.btpjp-field select {
  cursor: pointer;
  padding-right: 22px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path stroke='%230A0E14' stroke-width='1.2' fill='none' d='M1 1.5l4 3 4-3'/></svg>");
  background-repeat: no-repeat;
  background-position: right 4px center;
}

.btpjp-btn-search {
  background: var(--bjp-signal);
  color: var(--bjp-ink);
  border: 0;
  height: 56px;
  padding: 0 36px;
  font-family: var(--bjp-display);
  font-size: 18px;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.18s ease;
  text-transform: uppercase;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.btpjp-btn-search:hover { background: var(--bjp-signal-dk); }

/* ============================================================
   ICÔNES — minimalistes, fines, monochromes
   ============================================================ */
.btpjp-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  vertical-align: middle;
  opacity: 0.6;
}

.btpjp-icon-search { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230A0E14' stroke-width='1.5'><circle cx='11' cy='11' r='7'/><path stroke-linecap='round' d='m20 20-3.5-3.5'/></svg>"); }
.btpjp-icon-pin { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230A0E14' stroke-width='1.5'><path d='M12 21s7-7.58 7-13a7 7 0 1 0-14 0c0 5.42 7 13 7 13Z'/><circle cx='12' cy='8' r='2.5'/></svg>"); }
.btpjp-icon-building { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230A0E14' stroke-width='1.5'><rect x='5' y='3' width='14' height='18' rx='0.5'/><path d='M9 7h2m2 0h2M9 11h2m2 0h2M9 15h2m2 0h2'/><path d='M10 21v-3h4v3'/></svg>"); }
.btpjp-icon-contract { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230A0E14' stroke-width='1.5'><path d='M14 3H6a1 1 0 0 0-1 1v16a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V8l-5-5Z'/><path d='M14 3v5h5M9 13h6M9 17h6M9 9h2'/></svg>"); }
.btpjp-icon-folder { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230A0E14' stroke-width='1.5'><path d='M3 7a1 1 0 0 1 1-1h4l2 2h9a1 1 0 0 1 1 1v9a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V7Z'/></svg>"); }
.btpjp-icon-euro { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230A0E14' stroke-width='1.5'><path d='M16 6a6 6 0 1 0 0 12'/><path d='M4 10h8M4 14h7'/></svg>"); }
.btpjp-icon-clock { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230A0E14' stroke-width='1.5'><circle cx='12' cy='12' r='9'/><path stroke-linecap='round' d='M12 7v5l3 2'/></svg>"); }
.btpjp-icon-chart { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230A0E14' stroke-width='1.5'><path d='M3 3v18h18'/><path d='M7 14l4-4 4 4 5-5'/></svg>"); }
.btpjp-icon-arrow { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230A0E14' stroke-width='1.5'><path d='M5 12h14M13 6l6 6-6 6'/></svg>"); }

/* Versions blanches pour fond sombre */
.btpjp-icon-light { filter: invert(1) brightness(2); opacity: 1; }
.btpjp-icon-on-dark { filter: brightness(0) invert(1); opacity: 0.85; }

/* ============================================================
   BOUTONS
   ============================================================ */
.btpjp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: var(--bjp-r-md);
  font-family: var(--bjp-display);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.08em;
  cursor: pointer;
  border: 0;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  text-transform: uppercase;
  line-height: 1;
  position: relative;
  overflow: hidden;
}

.btpjp-btn-primary {
  background: var(--bjp-ink);
  color: var(--bjp-paper);
}

.btpjp-btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bjp-signal);
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.btpjp-btn-primary > * { position: relative; z-index: 1; }
.btpjp-btn-primary:hover { color: var(--bjp-ink); }
.btpjp-btn-primary:hover::after { transform: translateX(0); }

.btpjp-btn-secondary {
  background: transparent;
  color: var(--bjp-ink);
  border: 1px solid var(--bjp-ink);
}

.btpjp-btn-secondary:hover {
  background: var(--bjp-ink);
  color: var(--bjp-paper);
}

.btpjp-btn-ghost {
  background: var(--bjp-paper);
  color: var(--bjp-ink);
  border: 1px solid var(--bjp-fog);
}

.btpjp-btn-ghost:hover {
  background: var(--bjp-fog);
  border-color: var(--bjp-concrete);
}

.btpjp-btn-full { width: 100%; }
.btpjp-btn-large { padding: 18px 32px; font-size: 17px; }
.btpjp-btn-small { padding: 8px 14px; font-size: 12px; }
.btpjp-btn:disabled { opacity: 0.4; cursor: not-allowed; pointer-events: none; }

/* ============================================================
   LAYOUT RECHERCHE — résultats + carte
   ============================================================ */
.btpjp-search-layout {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 40px;
  margin-bottom: 80px;
}

@media (max-width: 1100px) {
  .btpjp-search-layout { grid-template-columns: 1fr; }
}

.btpjp-results-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--bjp-fog);
}

.btpjp-results-count {
  font-family: var(--bjp-display);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.01em;
  margin: 0;
  color: var(--bjp-ink);
  text-transform: uppercase;
}

.btpjp-results-count em {
  font-family: var(--bjp-mono);
  font-size: 11px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--bjp-concrete);
  margin-left: 12px;
  text-transform: uppercase;
}

.btpjp-view-toggle {
  display: flex;
  gap: 0;
  border: 1px solid var(--bjp-ink);
  border-radius: var(--bjp-r-sm);
  overflow: hidden;
}

.btpjp-view-btn {
  padding: 8px 14px;
  border: 0;
  background: var(--bjp-paper);
  cursor: pointer;
  font-family: var(--bjp-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bjp-ink);
  transition: all 0.18s ease;
}

.btpjp-view-btn + .btpjp-view-btn { border-left: 1px solid var(--bjp-ink); }
.btpjp-view-btn:hover { background: var(--bjp-fog); }
.btpjp-view-btn.active { background: var(--bjp-ink); color: var(--bjp-paper); }

/* ============================================================
   CARTES OFFRES — éditorial, journal d'architecture
   ============================================================ */
.btpjp-results-list { display: flex; flex-direction: column; gap: 0; }

.btpjp-job-card {
  background: var(--bjp-paper);
  border-top: 1px solid var(--bjp-fog);
  padding: 28px 0;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 24px;
  align-items: start;
}

.btpjp-job-card:last-child { border-bottom: 1px solid var(--bjp-fog); }

.btpjp-job-card::before {
  content: '';
  position: absolute;
  left: -32px;
  top: 28px;
  bottom: 28px;
  width: 3px;
  background: var(--bjp-signal);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btpjp-job-card:hover { padding-left: 24px; }
.btpjp-job-card:hover::before { transform: scaleY(1); }

.btpjp-job-card-num {
  font-family: var(--bjp-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--bjp-concrete);
  padding-top: 6px;
}

.btpjp-job-card-body { min-width: 0; }

.btpjp-job-card-meta-top {
  font-family: var(--bjp-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bjp-steel);
  margin-bottom: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.btpjp-job-card-meta-top span { display: inline-flex; align-items: center; gap: 6px; }

.btpjp-job-card-title {
  font-family: var(--bjp-display);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.05;
  margin: 0 0 8px 0;
  text-transform: uppercase;
}

.btpjp-job-card-title a {
  color: var(--bjp-ink);
  background-image: linear-gradient(var(--bjp-signal), var(--bjp-signal));
  background-size: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.3s ease;
  padding: 0 2px;
}

.btpjp-job-card-title a:hover { background-size: 100% 30%; background-position: 0 100%; }

.btpjp-job-card-excerpt {
  color: var(--bjp-steel);
  font-size: 14px;
  margin: 0 0 12px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5;
}

.btpjp-job-card-meta-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.btpjp-job-card-tag {
  display: inline-block;
  padding: 4px 10px;
  font-family: var(--bjp-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bjp-ink);
  background: var(--bjp-fog);
  border-radius: var(--bjp-r-sm);
}

.btpjp-job-card-tag.signal { background: var(--bjp-signal); color: var(--bjp-ink); }

.btpjp-job-card-cta {
  align-self: center;
  font-family: var(--bjp-display);
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--bjp-ink);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  text-transform: uppercase;
  padding-top: 8px;
}

.btpjp-job-card-cta::after {
  content: '→';
  font-family: var(--bjp-body);
  font-size: 18px;
  transition: transform 0.2s ease;
}

.btpjp-job-card:hover .btpjp-job-card-cta::after { transform: translateX(4px); }

@media (max-width: 700px) {
  .btpjp-job-card { grid-template-columns: 1fr; gap: 8px; }
  .btpjp-job-card-num { display: none; }
  .btpjp-job-card-cta { padding-top: 0; }
}

/* ============================================================
   CARTE LEAFLET
   ============================================================ */
.btpjp-map-col { position: sticky; top: 32px; align-self: start; }

.btpjp-map {
  height: 720px;
  max-height: 80vh;
  border-radius: var(--bjp-r-md);
  overflow: hidden;
  box-shadow: var(--bjp-shadow-lg);
  border: 1px solid var(--bjp-fog);
}

@media (max-width: 1100px) {
  .btpjp-map-col { position: static; }
  .btpjp-map { height: 480px; }
}

/* Overlay popup carte */
.btpjp-map-popup { font-family: var(--bjp-body); padding: 4px; }
.btpjp-map-popup h4 {
  font-family: var(--bjp-display);
  font-size: 16px;
  font-weight: 400;
  margin: 0 0 4px 0;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.btpjp-map-popup p { margin: 0 0 6px 0; font-size: 12px; color: var(--bjp-steel); }
.btpjp-map-popup a {
  font-family: var(--bjp-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bjp-ink);
  border-bottom: 2px solid var(--bjp-signal);
  padding-bottom: 1px;
}

.leaflet-container { font-family: var(--bjp-body) !important; }

/* ============================================================
   PAGINATION
   ============================================================ */
.btpjp-pagination {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--bjp-fog);
  flex-wrap: wrap;
}

.btpjp-pagination button {
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--bjp-fog);
  background: var(--bjp-paper);
  border-radius: var(--bjp-r-sm);
  cursor: pointer;
  font-family: var(--bjp-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--bjp-ink);
  transition: all 0.18s ease;
}

.btpjp-pagination button:hover:not(.active) { background: var(--bjp-fog); border-color: var(--bjp-ink); }
.btpjp-pagination button.active { background: var(--bjp-ink); color: var(--bjp-paper); border-color: var(--bjp-ink); }

/* ============================================================
   PAGE OFFRE INDIVIDUELLE — v2 Premium
   ============================================================ */
.btpjp-job-single { max-width: 1180px; margin: 0 auto; padding: 0 32px 80px; }

/* ── Breadcrumb ── */
.bjp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 20px 0 0;
  font-family: var(--bjp-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bjp-concrete);
}
.bjp-breadcrumb a { color: var(--bjp-steel); transition: color 0.15s; }
.bjp-breadcrumb a:hover { color: var(--bjp-ink); }
.bjp-sep { color: var(--bjp-fog); }

/* ── Hero Header ── */
.bjp-job-hero {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 48px;
  align-items: center;
  padding: 48px 0 40px;
  border-bottom: 1px solid var(--bjp-fog);
  margin-bottom: 48px;
  position: relative;
}

.bjp-job-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 64px; height: 4px;
  background: var(--bjp-signal);
}

@media (max-width: 860px) {
  .bjp-job-hero { grid-template-columns: 1fr; }
  .bjp-hero-deco { display: none; }
}

/* Tags */
.bjp-hero-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.bjp-tag {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 12px;
  border-radius: 13px;
  font-family: var(--bjp-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bjp-tag--contract { background: var(--bjp-signal); color: var(--bjp-ink); }
.bjp-tag--cat { background: var(--bjp-fog); color: var(--bjp-steel); }
.bjp-tag--rome { background: transparent; border: 1px solid var(--bjp-fog); color: var(--bjp-concrete); }

/* Titre principal */
.bjp-job-title {
  font-family: var(--bjp-display);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.01em;
  margin: 0 0 28px;
  text-transform: uppercase;
  color: var(--bjp-ink);
  max-width: 800px;
}

/* Meta chips */
.bjp-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bjp-meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  background: var(--bjp-paper);
  border: 1px solid var(--bjp-fog);
  border-radius: var(--bjp-r-lg);
  font-size: 14px;
  color: var(--bjp-graphite);
  transition: border-color 0.15s;
}

.bjp-meta-chip strong { color: var(--bjp-ink); }
.bjp-meta-chip svg { color: var(--bjp-concrete); flex-shrink: 0; }
.bjp-meta-chip--salary { border-color: rgba(200, 169, 81, 0.4); background: rgba(200, 169, 81, 0.06); }
.bjp-meta-chip--date { color: var(--bjp-concrete); font-size: 13px; }

/* Deco géométrique */
.bjp-hero-deco {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bjp-deco-grid {
  width: 160px;
  height: 160px;
  background: var(--bjp-paper);
  border: 1px solid var(--bjp-fog);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.bjp-deco-grid::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg, transparent 0px, transparent 12px,
    rgba(200,169,81,0.07) 12px, rgba(200,169,81,0.07) 13px
  );
}

.bjp-deco-grid svg {
  width: 72px;
  height: 72px;
  color: var(--bjp-signal);
  position: relative;
  z-index: 1;
}

/* ── Layout corps ── */
.bjp-job-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 56px;
  align-items: start;
}

@media (max-width: 900px) {
  .bjp-job-layout { grid-template-columns: 1fr; gap: 32px; }
  .bjp-job-sidebar { order: -1; }
}

/* ── Bannière expérience ── */
.bjp-experience-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: rgba(200,169,81,0.08);
  border-left: 3px solid var(--bjp-signal);
  border-radius: 0 var(--bjp-r-md) var(--bjp-r-md) 0;
  margin-bottom: 28px;
  font-size: 14px;
  color: var(--bjp-graphite);
}
.bjp-experience-banner svg { color: var(--bjp-signal); flex-shrink: 0; }
.bjp-experience-banner strong { color: var(--bjp-ink); }

/* ── Contenu offre ── */
.bjp-job-content { font-size: 16px; line-height: 1.75; color: var(--bjp-graphite); }

.bjp-job-content h2 {
  font-family: var(--bjp-display);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin: 40px 0 14px;
  text-transform: uppercase;
  color: var(--bjp-ink);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--bjp-fog);
}

.bjp-job-content h2:first-child { margin-top: 0; }

.bjp-job-content h3 {
  font-family: var(--bjp-display);
  font-size: 20px;
  margin: 28px 0 10px;
  text-transform: uppercase;
  color: var(--bjp-ink);
}

.bjp-job-content p { margin: 0 0 16px; }

.bjp-job-content ul, .bjp-job-content ol {
  margin: 0 0 20px;
  padding-left: 0;
  list-style: none;
}

.bjp-job-content ul li {
  position: relative;
  padding: 6px 0 6px 22px;
  border-bottom: 1px solid var(--bjp-fog);
}

.bjp-job-content ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--bjp-signal);
  font-size: 12px;
  top: 8px;
}

.bjp-job-content ol { counter-reset: bjp-counter; }
.bjp-job-content ol li {
  counter-increment: bjp-counter;
  padding: 6px 0 6px 28px;
  position: relative;
}
.bjp-job-content ol li::before {
  content: counter(bjp-counter, decimal-leading-zero);
  position: absolute;
  left: 0;
  font-family: var(--bjp-mono);
  font-size: 11px;
  color: var(--bjp-signal);
  top: 9px;
}

/* ── Section carte ── */
.bjp-map-section {
  margin-top: 40px;
  border: 1px solid var(--bjp-fog);
  border-radius: var(--bjp-r-lg);
  overflow: hidden;
}

.bjp-section-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  background: var(--bjp-paper);
  border-bottom: 1px solid var(--bjp-fog);
  font-family: var(--bjp-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bjp-steel);
}

#btpjp-mini-map { height: 240px; }

/* ── Sidebar ── */
.bjp-job-sidebar { display: flex; flex-direction: column; gap: 20px; }

/* ── Card Postuler ── */
.bjp-apply-card {
  background: #FFFFFF !important;
  color: #080C12 !important;
  border: 1px solid #E4E7ED;
  border-radius: 12px;
  padding: 28px;
  position: sticky;
  top: 28px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(8,12,18,0.08);
}

/* Forcer TOUS les éléments enfants à hériter la couleur sombre */
.bjp-apply-card *,
.bjp-apply-card p,
.bjp-apply-card span,
.bjp-apply-card div,
.bjp-apply-card small,
.bjp-apply-card svg {
  color: inherit;
}

.bjp-apply-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #C8A951, rgba(200,169,81,0.4));
}

.bjp-apply-card__header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--bjp-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7A8496 !important;
  margin-bottom: 20px;
}

/* Pastille verte pulsante */
.bjp-apply-pulse {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80 !important;
  color: transparent !important;
  box-shadow: 0 0 0 0 rgba(74,222,128,0.5);
  animation: bjp-pulse 2s infinite;
}

@keyframes bjp-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(74,222,128,0.5); }
  70%  { box-shadow: 0 0 0 8px rgba(74,222,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}

/* Bouton CTA principal */
.bjp-apply-card .bjp-cta-primary,
.bjp-cta-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 24px;
  background: #C8A951 !important;
  color: #0A0E14 !important;
  border: none;
  border-radius: 8px;
  font-family: var(--bjp-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  text-decoration: none !important;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  margin-bottom: 14px;
}

.bjp-apply-card .bjp-cta-primary:hover,
.bjp-cta-primary:hover {
  background: #d4b255 !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(200,169,81,0.35);
  color: #0A0E14 !important;
}

.bjp-cta-primary:active { transform: translateY(0); }

.bjp-apply-note {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 12px;
  color: #7A8496 !important;
  margin: 0 0 16px;
  line-height: 1.5;
}
.bjp-apply-note svg { flex-shrink: 0; margin-top: 1px; color: #B0B8C4 !important; }

.bjp-cta-login {
  display: block;
  text-align: center;
  font-family: var(--bjp-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: #C8A951 !important;
  text-transform: uppercase;
  margin-bottom: 16px;
  transition: opacity 0.15s;
  text-decoration: none !important;
}
.bjp-cta-login:hover { opacity: 0.75; color: #C8A951 !important; }

/* Bouton secondaire */
.bjp-apply-card .bjp-cta-secondary,
.bjp-cta-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 11px 20px;
  background: transparent !important;
  color: #3A4455 !important;
  border: 1px solid #D0D5DE !important;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none !important;
  transition: all 0.15s;
  margin-top: 4px;
}
.bjp-apply-card .bjp-cta-secondary:hover,
.bjp-cta-secondary:hover {
  border-color: #BFA054 !important;
  color: #BFA054 !important;
  background: rgba(191,160,84,0.05) !important;
}

.bjp-source-label {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #E4E7ED;
  font-family: var(--bjp-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: #B0B8C4 !important;
  text-transform: uppercase;
}

/* ── Card infos rapides ── */
.bjp-info-card {
  background: var(--bjp-paper);
  border: 1px solid var(--bjp-fog);
  border-radius: 12px;
  overflow: hidden;
}

.bjp-info-card__title {
  padding: 14px 20px;
  background: var(--bjp-cream);
  border-bottom: 1px solid var(--bjp-fog);
  font-family: var(--bjp-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bjp-steel);
}

.bjp-info-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bjp-info-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--bjp-fog);
}
.bjp-info-list li:last-child { border-bottom: none; }

.bjp-info-icon {
  width: 32px;
  height: 32px;
  background: var(--bjp-cream);
  border: 1px solid var(--bjp-fog);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--bjp-steel);
}

.bjp-info-list li > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bjp-info-list small {
  font-family: var(--bjp-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bjp-concrete);
}

.bjp-info-list strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--bjp-ink);
}

/* ============================================================
   MODAL
   ============================================================ */
.btpjp-modal {
  position: fixed;
  inset: 0;
  background: rgba(10, 14, 20, 0.85);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(4px);
}

.btpjp-modal-content {
  background: var(--bjp-paper);
  max-width: 560px;
  width: 100%;
  padding: 40px;
  position: relative;
  border-radius: var(--bjp-r-md);
  box-shadow: var(--bjp-shadow-xl);
  animation: btpjp-modal-in 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes btpjp-modal-in {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.btpjp-modal-content::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 60px;
  height: 4px;
  background: var(--bjp-signal);
}

.btpjp-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: 0;
  font-size: 24px;
  cursor: pointer;
  color: var(--bjp-concrete);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: all 0.18s ease;
}

.btpjp-modal-close:hover { background: var(--bjp-fog); color: var(--bjp-ink); }

.btpjp-modal-content h3 {
  font-family: var(--bjp-display);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin: 0 0 20px 0;
  text-transform: uppercase;
}

.btpjp-modal-body label {
  display: block;
  font-family: var(--bjp-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bjp-steel);
  margin-bottom: 8px;
}

.btpjp-modal-body textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--bjp-fog);
  border-radius: var(--bjp-r-sm);
  font-family: inherit;
  font-size: 14px;
  resize: vertical;
  background: var(--bjp-bone);
  transition: border-color 0.18s ease;
}

.btpjp-modal-body textarea:focus { outline: 0; border-color: var(--bjp-ink); }

.btpjp-modal-footer {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 24px;
}

/* ============================================================
   PAGES AUTH (Login / Register)
   ============================================================ */
.btpjp-auth-container {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  padding: 48px 32px;
}

.btpjp-auth-card {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  background: var(--bjp-paper);
  border-radius: var(--bjp-r-md);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  box-shadow: var(--bjp-shadow-xl);
}

.btpjp-auth-card-narrow {
  grid-template-columns: 1fr;
  max-width: 480px;
}

@media (max-width: 800px) {
  .btpjp-auth-card { grid-template-columns: 1fr; }
}

.btpjp-auth-form-side { padding: 56px 48px; }

@media (max-width: 600px) {
  .btpjp-auth-form-side { padding: 40px 28px; }
}

.btpjp-auth-header { margin-bottom: 32px; }

.btpjp-auth-header h1 {
  font-family: var(--bjp-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.95;
  margin: 0 0 16px 0;
  text-transform: uppercase;
  color: var(--bjp-ink);
}

.btpjp-auth-header p {
  font-size: 15px;
  color: var(--bjp-steel);
  margin: 0;
  max-width: 420px;
}

/* Side panel — design éditorial */
.btpjp-perks {
  background: var(--bjp-ink);
  color: var(--bjp-paper);
  padding: 56px 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}

.btpjp-perks::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent 0px, transparent 12px, rgba(244, 196, 48, 0.025) 12px, rgba(244, 196, 48, 0.025) 13px);
  pointer-events: none;
}

.btpjp-perks::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 120px;
  height: 6px;
  background: var(--bjp-signal);
}

.btpjp-perks-overline {
  font-family: var(--bjp-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bjp-signal);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.btpjp-perks h3 {
  font-family: var(--bjp-display);
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--bjp-paper);
  margin: 0 0 32px 0;
  position: relative;
  z-index: 1;
}

.btpjp-perks ul {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
}

.btpjp-perks li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(247, 247, 244, 0.1);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--bjp-paper);
}

.btpjp-perks li::before {
  content: '+';
  font-family: var(--bjp-display);
  font-size: 22px;
  color: var(--bjp-signal);
  line-height: 1;
}

.btpjp-perks li:last-child { border-bottom: 0; }

/* ============================================================
   FORMULAIRES
   ============================================================ */
.btpjp-form .btpjp-form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 600px) {
  .btpjp-form .btpjp-form-row-2col { grid-template-columns: 1fr; }
}

.btpjp-form-group { margin-bottom: 18px; }

.btpjp-form-group label {
  display: block;
  font-family: var(--bjp-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--bjp-steel);
}

.btpjp-form-group input[type=text],
.btpjp-form-group input[type=email],
.btpjp-form-group input[type=password],
.btpjp-form-group input[type=tel],
.btpjp-form-group input[type=number],
.btpjp-form-group input[type=url],
.btpjp-form-group select,
.btpjp-form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--bjp-fog);
  border-radius: var(--bjp-r-sm);
  font-family: inherit;
  font-size: 15px;
  background: var(--bjp-bone);
  color: var(--bjp-ink);
  transition: all 0.18s ease;
}

.btpjp-form-group input:focus,
.btpjp-form-group textarea:focus,
.btpjp-form-group select:focus {
  outline: 0;
  border-color: var(--bjp-ink);
  background: var(--bjp-paper);
  box-shadow: 0 0 0 3px rgba(10, 14, 20, 0.05);
}

.btpjp-form-group input[type=file] {
  padding: 10px;
  background: var(--bjp-paper);
}

.btpjp-form-checkbox label {
  font-weight: 400;
  font-family: var(--bjp-body);
  font-size: 13px;
  text-transform: none;
  letter-spacing: normal;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--bjp-graphite);
  cursor: pointer;
}

.btpjp-form-checkbox input[type=checkbox] {
  width: 16px;
  height: 16px;
  accent-color: var(--bjp-ink);
}

.btpjp-help {
  display: block;
  font-size: 12px;
  color: var(--bjp-concrete);
  margin-top: 6px;
  font-style: italic;
}

.btpjp-form-actions {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btpjp-form-message {
  font-size: 13px;
  padding: 8px 14px;
  border-radius: var(--bjp-r-sm);
  font-family: var(--bjp-mono);
  letter-spacing: 0.04em;
}

.btpjp-form-message.success { background: #E8F2EA; color: var(--bjp-success); }
.btpjp-form-message.error { background: #F5E5E2; color: var(--bjp-danger); }

.btpjp-form-alt {
  text-align: center;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--bjp-fog);
  font-family: var(--bjp-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bjp-concrete);
}

.btpjp-form-alt a { color: var(--bjp-ink); border-bottom: 1px solid var(--bjp-signal); padding-bottom: 1px; }

/* ============================================================
   ALERTES
   ============================================================ */
.btpjp-alert {
  padding: 18px 24px;
  border-radius: var(--bjp-r-md);
  margin-bottom: 20px;
  font-size: 14px;
  border-left: 3px solid;
  background: var(--bjp-paper);
}

.btpjp-alert-info { border-color: var(--bjp-blueprint); background: #F0F4F8; color: var(--bjp-blueprint); }
.btpjp-alert-warning { border-color: var(--bjp-warning); background: #FAF5E6; color: #5A4400; }
.btpjp-alert-success { border-color: var(--bjp-success); background: #E8F2EA; color: var(--bjp-success); }
.btpjp-alert-danger { border-color: var(--bjp-danger); background: #F5E5E2; color: var(--bjp-danger); }

/* ============================================================
   DASHBOARD
   ============================================================ */
.btpjp-dashboard {
  max-width: 1320px;
  margin: 40px auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
}

@media (max-width: 900px) { .btpjp-dashboard { grid-template-columns: 1fr; } }

/* ── Sidebar ── */
.btpjp-dashboard-sidebar {
  background: var(--bjp-bone);
  padding: 28px 20px;
  height: fit-content;
  position: sticky;
  top: 32px;
  border-radius: 2px;
  border: 1px solid var(--bjp-fog);
}

/* ── User card ── */
.btpjp-user-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--bjp-fog);
  margin-bottom: 20px;
}

.btpjp-avatar img {
  border-radius: 50%;
  width: 52px;
  height: 52px;
  object-fit: cover;
  display: block;
}

.btpjp-user-info { display: flex; flex-direction: column; gap: 5px; min-width: 0; width: 100%; }

.btpjp-user-info strong {
  font-family: var(--bjp-display);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--bjp-ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btpjp-user-info small {
  font-family: var(--bjp-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--bjp-concrete);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── Nav ── */
.btpjp-dashboard-nav {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.btpjp-dashboard-nav a {
  padding: 11px 14px;
  color: var(--bjp-steel);
  text-decoration: none;
  border-radius: 2px;
  font-family: var(--bjp-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.15s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.btpjp-dashboard-nav a:hover {
  background: var(--bjp-fog);
  color: var(--bjp-ink);
}

.btpjp-dashboard-nav a.active {
  background: var(--bjp-ink);
  color: var(--bjp-cream);
}

.btpjp-dashboard-nav a.active .btpjp-nav-count {
  background: rgba(255,255,255,0.15);
  color: var(--bjp-cream);
}

.btpjp-nav-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 18px;
  padding: 0 5px;
  border-radius: 9px;
  background: var(--bjp-fog);
  color: var(--bjp-steel);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0;
}

.btpjp-dashboard-nav .btpjp-logout {
  color: var(--bjp-danger);
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--bjp-fog);
  opacity: 0.75;
}

.btpjp-dashboard-nav .btpjp-logout:hover { opacity: 1; background: transparent; }

/* ── Main area ── */
.btpjp-dashboard-main {
  background: var(--bjp-bone);
  padding: 48px;
  border-radius: 2px;
  border: 1px solid var(--bjp-fog);
  min-height: 600px;
}

@media (max-width: 600px) { .btpjp-dashboard-main { padding: 28px 20px; } }

.btpjp-dashboard-main h1 {
  font-family: var(--bjp-display);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.95;
  margin: 0 0 36px 0;
  color: var(--bjp-ink);
  border-bottom: 1px solid var(--bjp-fog);
  padding-bottom: 20px;
}

/* ── Stats grid ── */
.btpjp-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

.btpjp-stat-card {
  background: var(--bjp-paper);
  border: 1px solid var(--bjp-fog);
  border-radius: 2px;
  padding: 24px 24px 20px;
  position: relative;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
}

.btpjp-stat-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--bjp-signal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}

.btpjp-stat-card:hover {
  border-color: var(--bjp-graphite);
  box-shadow: 0 4px 16px rgba(10,14,20,0.07);
}

.btpjp-stat-card:hover::after { transform: scaleX(1); }

.btpjp-stat-value {
  font-family: var(--bjp-display);
  font-size: 52px;
  font-weight: 400;
  color: var(--bjp-ink);
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.btpjp-stat-label {
  font-family: var(--bjp-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bjp-concrete);
  margin-bottom: 10px;
}

.btpjp-stat-trend {
  font-family: var(--bjp-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--bjp-success);
  font-weight: 500;
}

/* ── Cards génériques ── */
.btpjp-card {
  background: var(--bjp-paper);
  border: 1px solid var(--bjp-fog);
  border-radius: 2px;
  padding: 32px;
  margin-bottom: 20px;
  position: relative;
}

.btpjp-card h2 {
  font-family: var(--bjp-display);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0.01em;
  margin: 0 0 24px 0;
  color: var(--bjp-ink);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--bjp-fog);
}

/* ── CV status card ── */
.btpjp-cv-status-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 28px;
}

.btpjp-cv-status-indicator {
  flex-shrink: 0;
  width: 4px;
  align-self: stretch;
  border-radius: 2px;
}

.btpjp-cv-status-ok { background: var(--bjp-success); }
.btpjp-cv-status-missing { background: var(--bjp-concrete); }

.btpjp-cv-status-body { flex: 1; min-width: 0; }

.btpjp-cv-status-title {
  font-family: var(--bjp-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--bjp-ink);
  margin: 0 0 6px 0;
}

.btpjp-cv-status-desc {
  font-size: 13.5px;
  color: var(--bjp-steel);
  margin: 0 0 18px 0;
  line-height: 1.55;
}

.btpjp-cv-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 10px;
}

.btpjp-cv-send-msg {
  display: block;
  margin-top: 6px;
  font-family: var(--bjp-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.btpjp-cv-note {
  font-size: 12px;
  color: var(--bjp-concrete);
  margin: 0;
  line-height: 1.5;
}

/* ── File drop zone ── */
.btpjp-file-drop {
  position: relative;
  border: 1.5px dashed var(--bjp-fog);
  border-radius: 2px;
  background: var(--bjp-cream);
  transition: border-color 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.btpjp-file-drop:hover,
.btpjp-file-drop--over {
  border-color: var(--bjp-signal);
  background: var(--bjp-paper);
}

.btpjp-file-drop input[type=file] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.btpjp-file-drop-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 32px;
  font-family: var(--bjp-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--bjp-concrete);
  text-align: center;
  pointer-events: none;
}

.btpjp-file-drop-inner svg {
  color: var(--bjp-concrete);
  opacity: 0.6;
}

/* ── App list ── */
.btpjp-app-list { list-style: none; padding: 0; margin: 0; }
.btpjp-app-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--bjp-fog);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.btpjp-app-list li:last-child { border-bottom: 0; }
.btpjp-app-list strong { color: var(--bjp-ink); font-weight: 600; font-size: 14px; }
.btpjp-app-list small { font-family: var(--bjp-mono); font-size: 11px; color: var(--bjp-concrete); letter-spacing: 0.04em; }

/* ── Table ── */
.btpjp-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.btpjp-table th {
  text-align: left;
  padding: 12px 16px;
  background: transparent;
  font-family: var(--bjp-mono);
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bjp-concrete);
  border-bottom: 1.5px solid var(--bjp-ink);
}
.btpjp-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--bjp-fog);
  vertical-align: middle;
  color: var(--bjp-graphite);
}
.btpjp-table tr:last-child td { border-bottom: 0; }
.btpjp-table tr:hover td { background: var(--bjp-cream); }

/* ── Empty state ── */
.btpjp-empty-state { text-align: center; padding: 64px 24px; }
.btpjp-empty-state p {
  font-family: var(--bjp-display);
  font-size: 22px;
  color: var(--bjp-concrete);
  margin-bottom: 24px;
}

/* ── Link arrow ── */
.btpjp-link-arrow {
  color: var(--bjp-ink);
  font-family: var(--bjp-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--bjp-signal);
  padding-bottom: 2px;
  margin-top: 10px;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.btpjp-link-arrow:hover { color: var(--bjp-signal-dk); border-color: var(--bjp-signal-dk); }

.btpjp-muted {
  color: var(--bjp-concrete);
  font-size: 13px;
}

/* ============================================================
   PRICING
   ============================================================ */
.btpjp-pricing {
  max-width: 1180px;
  margin: 64px auto;
  padding: 0 32px;
}

.btpjp-pricing-header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
}

.btpjp-pricing-header::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--bjp-signal);
  margin: 32px auto 0;
}

.btpjp-pricing-overline {
  font-family: var(--bjp-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bjp-steel);
  margin-bottom: 16px;
  display: block;
}

.btpjp-pricing-header h1 {
  font-family: var(--bjp-display);
  font-size: clamp(48px, 7vw, 84px);
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 0.92;
  text-transform: uppercase;
  margin: 0 0 16px 0;
  color: var(--bjp-ink);
}

.btpjp-pricing-header p {
  font-size: 17px;
  color: var(--bjp-steel);
  max-width: 540px;
  margin: 0 auto;
}

.btpjp-pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 880px;
  margin: 0 auto;
  border: 1px solid var(--bjp-fog);
  border-radius: var(--bjp-r-md);
  overflow: hidden;
}

@media (max-width: 700px) { .btpjp-pricing-grid { grid-template-columns: 1fr; } }

.btpjp-pricing-card {
  background: var(--bjp-paper);
  padding: 48px 40px;
  position: relative;
  transition: background 0.3s ease;
}

.btpjp-pricing-card + .btpjp-pricing-card { border-left: 1px solid var(--bjp-fog); }

@media (max-width: 700px) {
  .btpjp-pricing-card + .btpjp-pricing-card { border-left: 0; border-top: 1px solid var(--bjp-fog); }
}

.btpjp-pricing-card-featured {
  background: var(--bjp-ink);
  color: var(--bjp-paper);
}

.btpjp-pricing-card-featured h2,
.btpjp-pricing-card-featured .btpjp-pricing-value { color: var(--bjp-paper); }

.btpjp-pricing-card-featured .btpjp-pricing-features li { color: var(--bjp-paper); border-color: rgba(247, 247, 244, 0.1); }
.btpjp-pricing-card-featured .btpjp-pricing-features li::before { color: var(--bjp-signal); }

.btpjp-pricing-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: var(--bjp-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bjp-ink);
  background: var(--bjp-signal);
  padding: 4px 10px;
  border-radius: var(--bjp-r-sm);
}

.btpjp-pricing-card-header {
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--bjp-fog);
}

.btpjp-pricing-card-featured .btpjp-pricing-card-header { border-color: rgba(247, 247, 244, 0.15); }

.btpjp-pricing-card-overline {
  font-family: var(--bjp-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bjp-concrete);
  margin-bottom: 12px;
  display: block;
}

.btpjp-pricing-card-featured .btpjp-pricing-card-overline { color: var(--bjp-signal); }

.btpjp-pricing-card-header h2 {
  font-family: var(--bjp-display);
  font-size: 40px;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin: 0 0 24px 0;
  text-transform: uppercase;
  color: var(--bjp-ink);
}

.btpjp-pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.btpjp-pricing-currency { font-size: 24px; font-weight: 500; color: var(--bjp-steel); }
.btpjp-pricing-card-featured .btpjp-pricing-currency { color: var(--bjp-signal); }

.btpjp-pricing-value {
  font-family: var(--bjp-display);
  font-size: 84px;
  font-weight: 400;
  color: var(--bjp-ink);
  line-height: 0.9;
  letter-spacing: 0;
}

.btpjp-pricing-period {
  font-family: var(--bjp-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bjp-concrete);
  margin-left: 12px;
}

.btpjp-pricing-card-featured .btpjp-pricing-period { color: rgba(247, 247, 244, 0.5); }

.btpjp-pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

.btpjp-pricing-features li {
  padding: 14px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--bjp-fog);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--bjp-graphite);
}

.btpjp-pricing-features li:last-child { border-bottom: 0; }

.btpjp-pricing-features li::before {
  content: '+';
  font-family: var(--bjp-display);
  font-size: 18px;
  color: var(--bjp-ink);
  line-height: 1;
  flex-shrink: 0;
}

.btpjp-pricing-features li strong { font-weight: 600; }

.btpjp-pricing-card .btpjp-btn { width: 100%; }

.btpjp-pricing-card-featured .btpjp-btn-primary {
  background: var(--bjp-signal);
  color: var(--bjp-ink);
}

.btpjp-pricing-card-featured .btpjp-btn-primary::after { background: var(--bjp-paper); }
.btpjp-pricing-card-featured .btpjp-btn-secondary {
  background: transparent;
  color: var(--bjp-paper);
  border-color: rgba(247, 247, 244, 0.3);
}
.btpjp-pricing-card-featured .btpjp-btn-secondary:hover {
  background: var(--bjp-paper);
  color: var(--bjp-ink);
}

/* Réassurance pricing */
.btpjp-pricing-reassurance {
  text-align: center;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.btpjp-pricing-reassurance p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 14px;
  color: var(--bjp-steel);
  margin: 0;
}
.btpjp-pricing-reassurance svg {
  flex-shrink: 0;
  stroke: var(--bjp-signal);
}
.btpjp-pricing-candidate-note {
  font-size: 13px !important;
  color: var(--bjp-concrete) !important;
}
.btpjp-pricing-candidate-note a {
  color: var(--bjp-signal);
  text-decoration: underline;
}

/* ============================================================
   SUBSCRIPTION CARD
   ============================================================ */
.btpjp-subscription-card {
  background: var(--bjp-ink);
  color: var(--bjp-paper);
  padding: 48px;
  border-radius: var(--bjp-r-md);
  position: relative;
  overflow: hidden;
}

.btpjp-subscription-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 80px;
  height: 4px;
  background: var(--bjp-signal);
}

.btpjp-subscription-card h2 {
  font-family: var(--bjp-display);
  font-size: 36px;
  letter-spacing: 0.02em;
  margin: 0 0 24px 0;
  text-transform: uppercase;
  color: var(--bjp-paper);
}

.btpjp-subscription-card h3 {
  font-family: var(--bjp-display);
  font-size: 24px;
  letter-spacing: 0.02em;
  margin-top: 32px;
  text-transform: uppercase;
  color: var(--bjp-signal);
}

.btpjp-subscription-card ul { padding: 0; list-style: none; }
.btpjp-subscription-card li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(247, 247, 244, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
}
.btpjp-subscription-card li::before {
  content: '+';
  color: var(--bjp-signal);
  font-family: var(--bjp-display);
  font-size: 20px;
}

/* ============================================================
   PROGRESS BAR
   ============================================================ */
.btpjp-progress {
  width: 100%;
  height: 4px;
  background: var(--bjp-fog);
  border-radius: 2px;
  overflow: hidden;
  margin: 8px 0;
}

.btpjp-progress-bar {
  height: 100%;
  background: var(--bjp-signal);
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .btpjp-search-grid { grid-template-columns: 1fr; gap: 1px; }
  .btpjp-btn-search { width: 100%; }
  .btpjp-search-bar { padding: 32px 24px 24px; }
  .btpjp-search-app { padding: 0 16px; }
  .btpjp-job-single { padding: 0 16px 60px; }
  .btpjp-search-header { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes btpjp-fade-up {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.btpjp-job-card {
  animation: btpjp-fade-up 0.5s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

.btpjp-job-card:nth-child(1) { animation-delay: 0.05s; }
.btpjp-job-card:nth-child(2) { animation-delay: 0.10s; }
.btpjp-job-card:nth-child(3) { animation-delay: 0.15s; }
.btpjp-job-card:nth-child(4) { animation-delay: 0.20s; }
.btpjp-job-card:nth-child(5) { animation-delay: 0.25s; }
.btpjp-job-card:nth-child(6) { animation-delay: 0.30s; }


/* ============================================================
   OPTGROUPS — pour la hiérarchie des métiers
   ============================================================ */
.btpjp-field select optgroup,
.btpjp-form-group select optgroup {
  font-family: var(--bjp-mono);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bjp-ink);
  background: var(--bjp-paper);
  padding: 4px 0;
}

.btpjp-field select optgroup option,
.btpjp-form-group select optgroup option {
  font-family: var(--bjp-body);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: -0.005em;
  text-transform: none;
  color: var(--bjp-graphite);
  padding: 6px 12px;
}


/* ============================================================
   HOMEPAGE PREMIUM avec photos Unsplash
   ============================================================ */
.btpjp-homepage {
  font-family: var(--bjp-body);
  color: var(--bjp-ink);
  background: var(--bjp-paper);
}

/* HERO PHOTO IMMERSIF */
.btpjp-hero-photo {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}

.btpjp-hero-photo-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.btpjp-hero-photo-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.btpjp-hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 14, 20, 0.85) 0%, rgba(10, 14, 20, 0.65) 60%, rgba(10, 14, 20, 0.85) 100%);
}

.btpjp-hero-photo .btpjp-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 900px) {
  .btpjp-hero-photo .btpjp-container { grid-template-columns: 1fr; gap: 48px; }
  .btpjp-hero-photo { padding: 80px 0 60px; min-height: auto; }
}

.btpjp-hero-photo-content { color: #FAFAF7; }

.btpjp-hero-photo-content .btpjp-overline {
  color: var(--bjp-signal-lt);
  margin-bottom: 24px;
}

.btpjp-hero-photo-content .btpjp-overline::before { background: #C8A951; }

.btpjp-hero-photo-title {
  font-family: var(--bjp-display) !important;
  font-size: clamp(48px, 7vw, 88px) !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  letter-spacing: -0.025em !important;
  color: #FAFAF7 !important;
  margin: 0 0 32px 0 !important;
  text-transform: none !important;
}

.btpjp-hero-photo-title .italic-accent {
  font-style: italic;
  font-weight: 400;
  color: var(--bjp-signal-lt);
}

.btpjp-hero-photo-lead {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(250, 250, 247, 0.85);
  margin: 0 0 40px 0;
  max-width: 580px;
}

.btpjp-hero-photo-lead strong { color: var(--bjp-signal-lt); font-weight: 600; }

.btpjp-hero-photo-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Stats latéral */
.btpjp-hero-photo-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(191,160,84,0.18);
  padding: 1px;
  border-radius: var(--bjp-r-md);
  backdrop-filter: blur(16px);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(8,12,18,0.30);
}

.btpjp-hero-photo-stat {
  background: rgba(8, 12, 18, 0.60);
  padding: 28px 24px;
  text-align: left;
  backdrop-filter: blur(20px);
  transition: background var(--bjp-duration) var(--bjp-ease);
  position: relative;
}
.btpjp-hero-photo-stat::after {
  content: '';
  position: absolute;
  bottom: 0; left: 24px; right: 24px;
  height: 1px;
  background: rgba(191,160,84,0.15);
}
.btpjp-hero-photo-stat:hover {
  background: rgba(8, 12, 18, 0.75);
}

.btpjp-stat-icon {
  color: rgba(191,160,84,0.5);
  margin-bottom: 12px;
  display: block;
}
.btpjp-hero-photo-stat .value {
  font-family: var(--bjp-display);
  font-size: 44px;
  font-weight: 400;
  line-height: 0.95;
  color: var(--bjp-signal-lt);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
  font-style: italic;
}

.btpjp-hero-photo-stat .label {
  font-family: var(--bjp-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250, 250, 247, 0.7);
}

/* Section pro générale */
.btpjp-section-pro {
  padding: 120px 0;
  background: var(--bjp-paper);
}

.btpjp-section-pro-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
  align-items: end;
}

@media (max-width: 768px) {
  .btpjp-section-pro-header { grid-template-columns: 1fr; gap: 24px; }
}

.btpjp-section-pro-title {
  font-family: var(--bjp-display) !important;
  font-size: clamp(40px, 5vw, 72px) !important;
  font-weight: 400 !important;
  line-height: 0.95 !important;
  letter-spacing: -0.025em !important;
  color: var(--bjp-ink);
  margin: 16px 0 0 0 !important;
  text-transform: none !important;
}

.btpjp-section-pro-title .italic-accent {
  font-style: italic;
  font-weight: 400;
  color: var(--bjp-signal-dk);
}

.btpjp-section-pro-intro {
  font-size: 17px;
  line-height: 1.7;
  color: var(--bjp-steel);
  max-width: 480px;
}

.btpjp-section-cta { text-align: center; margin-top: 64px; }

/* GRILLE CATÉGORIES PRO avec photos */
.btpjp-cat-grid-pro {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 1024px) { .btpjp-cat-grid-pro { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .btpjp-cat-grid-pro { grid-template-columns: 1fr; } }

.btpjp-cat-pro {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--bjp-r-md);
  overflow: hidden;
  text-decoration: none;
  color: var(--bjp-ink);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(10, 14, 20, 0.04);
}

.btpjp-cat-pro:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(10, 14, 20, 0.12);
}

.btpjp-cat-pro-large {
  grid-column: span 2;
}

@media (max-width: 1024px) {
  .btpjp-cat-pro-large { grid-column: span 1; }
}

.btpjp-cat-pro-image {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bjp-cream);
}

.btpjp-cat-pro-large .btpjp-cat-pro-image {
  aspect-ratio: 16/8;
}

.btpjp-cat-pro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.15);
  transition: transform 0.6s ease, filter 0.4s ease;
}

.btpjp-cat-pro:hover .btpjp-cat-pro-image img {
  transform: scale(1.05);
  filter: grayscale(0);
}

.btpjp-cat-pro-content {
  padding: 32px;
  flex: 1;
  position: relative;
}

.btpjp-cat-pro-num {
  font-family: var(--bjp-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--bjp-signal-dk);
  position: absolute;
  top: 32px;
  right: 32px;
}

.btpjp-cat-pro-title {
  font-family: var(--bjp-display) !important;
  font-size: 36px !important;
  font-weight: 500 !important;
  letter-spacing: -0.02em !important;
  margin: 0 0 8px 0 !important;
  text-transform: none !important;
  line-height: 1 !important;
  color: var(--bjp-ink);
}

.btpjp-cat-pro-meta {
  font-family: var(--bjp-body);
  font-size: 13px;
  color: var(--bjp-concrete);
  margin: 0 0 20px 0;
  letter-spacing: 0.04em;
}

.btpjp-cat-pro-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}

.btpjp-cat-pro-list span {
  font-size: 12px;
  font-weight: 500;
  padding: 5px 11px;
  background: var(--bjp-cream);
  border-radius: var(--bjp-r-sm);
  color: var(--bjp-graphite);
}

.btpjp-cat-pro-cta {
  font-family: var(--bjp-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--bjp-ink);
  border-bottom: 1px solid var(--bjp-signal);
  padding-bottom: 2px;
  display: inline-block;
}

/* SECTION SPLIT (Photo + Texte) */
.btpjp-feature-split {
  padding: 120px 0;
  background: #FFFFFF;
}

.btpjp-feature-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 900px) {
  .btpjp-feature-split-grid { grid-template-columns: 1fr; gap: 48px; }
  .btpjp-feature-split-reverse .btpjp-feature-split-grid { direction: ltr; }
}

.btpjp-feature-split-reverse .btpjp-feature-split-grid {
  direction: rtl;
}

.btpjp-feature-split-reverse .btpjp-feature-split-grid > * {
  direction: ltr;
}

.btpjp-feature-split-image {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--bjp-r-md);
  position: relative;
}

.btpjp-feature-split-image::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 80px;
  height: 80px;
  background: var(--bjp-signal);
  z-index: 1;
}

.btpjp-feature-split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.15);
}

.btpjp-feature-split-content h2 {
  font-family: var(--bjp-display) !important;
  font-size: clamp(36px, 4.5vw, 60px) !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  letter-spacing: -0.02em !important;
  margin: 16px 0 24px 0 !important;
  text-transform: none !important;
}

.btpjp-feature-split-content h2 .italic-accent {
  font-style: italic;
  color: var(--bjp-signal-dk);
}

.btpjp-feature-split-text {
  font-size: 17px;
  line-height: 1.7;
  color: var(--bjp-steel);
  margin: 0 0 32px 0;
}

.btpjp-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.btpjp-feature-list li {
  padding: 14px 0 14px 32px;
  border-top: 1px solid var(--bjp-fog);
  position: relative;
  font-size: 15px;
  color: var(--bjp-graphite);
}

.btpjp-feature-list li:last-child { border-bottom: 1px solid var(--bjp-fog); }

.btpjp-feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 14px;
  width: 22px;
  height: 22px;
  background: var(--bjp-signal);
  color: var(--bjp-ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

/* SECTION DERNIÈRES OFFRES (sombre) */
.btpjp-latest-section {
  padding: 120px 0;
  background: var(--bjp-ink);
  color: var(--bjp-paper);
  position: relative;
  overflow: hidden;
}

.btpjp-latest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 1px;
  background: rgba(250, 250, 247, 0.06);
  padding: 1px;
  border-radius: var(--bjp-r-md);
}

.btpjp-latest-card {
  background: #1C232E;
  padding: 32px;
  text-decoration: none;
  color: var(--bjp-paper);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: background 0.3s ease;
  min-height: 220px;
}

.btpjp-latest-card:hover { background: #2A3340; color: var(--bjp-paper); }

.btpjp-latest-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btpjp-latest-card-date {
  font-family: var(--bjp-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(250, 250, 247, 0.5);
}

.btpjp-latest-card-title {
  font-family: var(--bjp-display) !important;
  font-size: 24px !important;
  font-weight: 500 !important;
  letter-spacing: -0.015em !important;
  line-height: 1.1 !important;
  margin: 0 !important;
  flex: 1;
  color: var(--bjp-paper);
  text-transform: none !important;
}

.btpjp-latest-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: var(--bjp-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding-top: 16px;
  border-top: 1px solid rgba(250, 250, 247, 0.1);
}

.btpjp-latest-card-bottom > span:first-child { color: var(--bjp-signal); }
.btpjp-latest-card-company {
  color: rgba(250, 250, 247, 0.6);
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 60%;
}

/* GRILLE VILLES PRO */
.btpjp-cities-grid-pro {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.btpjp-city-tile-pro {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  background: #FFF;
  border: 1px solid transparent;
  border-radius: var(--bjp-r-md);
  text-decoration: none;
  color: var(--bjp-ink);
  transition: all 0.3s ease;
}

.btpjp-city-tile-pro:hover {
  border-color: var(--bjp-signal);
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(10, 14, 20, 0.08);
}

.btpjp-city-tile-name {
  font-family: var(--bjp-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.015em;
}

.btpjp-city-tile-count {
  font-family: var(--bjp-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--bjp-signal-dk);
  text-transform: uppercase;
}

/* CTA FINAL avec image */
.btpjp-cta-final {
  position: relative;
  padding: 160px 0;
  overflow: hidden;
  background: var(--bjp-ink);
}

.btpjp-cta-final-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.btpjp-cta-final-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3) saturate(0.5);
}

.btpjp-cta-final::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 14, 20, 0.85) 0%, rgba(10, 14, 20, 0.65) 100%);
  z-index: 0;
}

.btpjp-cta-final .btpjp-container {
  position: relative;
  z-index: 1;
}

.btpjp-cta-final-content {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  color: var(--bjp-paper);
}

.btpjp-cta-final-content .btpjp-overline {
  color: var(--bjp-signal);
}
.btpjp-cta-final-content .btpjp-overline::before { background: var(--bjp-signal); }

.btpjp-cta-final-title {
  font-family: var(--bjp-display) !important;
  font-size: clamp(56px, 8vw, 100px) !important;
  font-weight: 400 !important;
  line-height: 0.95 !important;
  letter-spacing: -0.03em !important;
  color: var(--bjp-paper) !important;
  margin: 24px 0 !important;
  text-transform: none !important;
}

.btpjp-cta-final-title .italic-accent {
  font-style: italic;
  color: var(--bjp-signal);
}

.btpjp-cta-final-text {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(250, 250, 247, 0.8);
  margin-bottom: 48px;
}

.btpjp-cta-final-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Bouton ghost light pour fond sombre */
.btpjp-btn-ghost-light {
  background: transparent;
  color: var(--bjp-paper);
  border: 1px solid rgba(250, 250, 247, 0.3);
}

.btpjp-btn-ghost-light:hover {
  background: var(--bjp-paper);
  color: var(--bjp-ink);
  border-color: var(--bjp-paper);
}

/* Bouton gold spécial */
.btpjp-btn-gold {
  background: var(--bjp-signal);
  color: var(--bjp-ink);
}

.btpjp-btn-gold:hover {
  background: var(--bjp-paper);
  color: var(--bjp-ink);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

/* ============================================================
   OVERRIDE TYPO PREMIUM — Fraunces n'est pas en majuscules
   ============================================================ */

/* Les TITRES principaux en Fraunces sont en casse normale, pas uppercase */
.btpjp-search-title,
.btpjp-job-title,
.btpjp-section-title,
.btpjp-hero-title,
.btpjp-cta-title,
.btpjp-pricing-header h1,
.btpjp-auth-header h1,
.btpjp-dashboard-main h1,
.btpjp-results-count,
.btpjp-job-card-title,
.btpjp-pricing-card-header h2,
.btpjp-job-content h2,
.btpjp-job-content h3,
.btpjp-card h2,
.btpjp-modal-content h3,
.btpjp-perks h3,
.btpjp-apply-box h3,
.btpjp-job-map-mini h3,
.btpjp-category-card-title,
.btpjp-latest-card-title,
.btpjp-city-tile-name,
.btpjp-stat-value,
.btpjp-empty-state p,
.btpjp-results-count em,
.btpjp-pricing-value,
.btpjp-hero-stat-value,
.btpjp-user-info strong,
.btpjp-subscription-card h2,
.btpjp-subscription-card h3 {
  text-transform: none !important;
  letter-spacing: -0.025em !important;
  font-weight: 400 !important;
}

/* Italique pour les accents */
.btpjp-search-title .accent,
.btpjp-hero-title .accent {
  font-style: italic;
  font-weight: 400 !important;
  color: var(--bjp-signal-dk) !important;
}

.btpjp-search-title .accent::after,
.btpjp-hero-title .accent::after {
  display: none !important;
}

/* Les overlines, badges, métadonnées RESTENT en uppercase (Outfit) */
.btpjp-overline,
.eyebrow,
.btpjp-badge,
.btpjp-job-card-meta-top,
.btpjp-job-card-tag,
.btpjp-pricing-card-overline,
.btpjp-perks-overline,
.btpjp-job-meta-top,
.btpjp-job-meta-label,
.btpjp-job-source,
.btpjp-form-group label,
.btpjp-form-alt,
.btpjp-stat-label,
.btpjp-hero-stat-label,
.btpjp-search-meta,
.btpjp-search-subtitle,
.btpjp-pagination button,
.btpjp-view-btn,
.btpjp-link-arrow,
.btpjp-job-card-cta,
.btpjp-category-card-cta,
.btpjp-city-tile-count,
.btpjp-latest-card-meta,
.btpjp-latest-card-bottom,
.btpjp-latest-card-date,
.btpjp-pricing-period,
.btpjp-job-card-num,
.btpjp-results-count em,
.btpjp-dashboard-nav a,
.btpjp-pricing-overline,
.btpjp-table th {
  font-family: var(--bjp-body) !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  letter-spacing: 0.12em !important;
}

/* Les boutons utilisent Outfit (sans-serif) */
.btpjp-btn {
  font-family: var(--bjp-body) !important;
  text-transform: none !important;
  letter-spacing: 0.01em !important;
  font-weight: 500 !important;
}

.btpjp-btn-search {
  font-family: var(--bjp-body) !important;
  text-transform: none !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
}

/* ============================================================
   AUTOCOMPLETE VILLE & CONTRAT — champ texte avec datalist
   ============================================================ */
.btpjp-field-autocomplete {
  position: relative;
}

.btpjp-field-autocomplete input {
  padding-right: 28px !important;
}

.btpjp-field-clear {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--bjp-concrete);
  font-size: 16px;
  line-height: 1;
  padding: 2px 4px;
  display: none;
  transition: color 0.15s ease;
  z-index: 2;
}

.btpjp-field-clear.visible { display: block; }
.btpjp-field-clear:hover { color: var(--bjp-ink); }

/* ============================================================
   CHIPS CONTRATS RAPIDES
   ============================================================ */
.btpjp-contract-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
  align-items: center;
}

.btpjp-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1.5px solid rgba(247, 247, 244, 0.22);
  background: transparent;
  color: rgba(247, 247, 244, 0.75);
  font-family: var(--bjp-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.18s ease;
  white-space: nowrap;
}

.btpjp-chip svg {
  flex-shrink: 0;
  opacity: 0.8;
}

.btpjp-chip:hover {
  border-color: rgba(247, 247, 244, 0.55);
  color: var(--bjp-paper);
  background: rgba(247, 247, 244, 0.08);
}

.btpjp-chip.btpjp-chip-active {
  background: var(--bjp-signal);
  border-color: var(--bjp-signal);
  color: var(--bjp-ink);
  font-weight: 600;
}

.btpjp-chip.btpjp-chip-active svg {
  opacity: 1;
  stroke: var(--bjp-ink);
}

/* ============================================================
   MÉTA CARTES OFFRES — texte pur, sans icône ni thumbnail
   ============================================================ */

/* Supprimer tout SVG ou image résiduel dans les cartes offres */
.btpjp-job-card svg,
.btpjp-card-icon,
.btpjp-job-card img,
.btpjp-job-card .wp-post-image,
.btpjp-job-card .attachment-thumbnail,
.btpjp-job-card .job-thumbnail,
.btpjp-job-card-thumb,
.btpjp-job-logo {
  display: none !important;
}

.btpjp-job-card-meta-top {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.btpjp-meta-company {
  font-weight: 600;
  color: var(--bjp-ink);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btpjp-meta-city::before  { content: '📍 '; font-size: 10px; }
.btpjp-meta-date::before  { content: '🗓 '; font-size: 10px; }

.btpjp-meta-city,
.btpjp-meta-date {
  font-size: 12px;
  color: var(--bjp-steel);
}

.btpjp-job-card-tag {
  display: inline-flex;
  align-items: center;
}

/* ============================================================
   RESPONSIVE CHIPS
   ============================================================ */
@media (max-width: 700px) {
  .btpjp-contract-chips {
    gap: 6px;
    margin-top: 10px;
  }
  .btpjp-chip {
    font-size: 11px;
    padding: 5px 11px;
    gap: 5px;
  }
}

/* ============================================================
   CATÉGORIES HOMEPAGE — CARTES SANS IMAGE NI ICÔNE
   ============================================================ */

/* ICÔNES CATÉGORIES — SVG premium réactivés */
.btpjp-cat-pro-image,
.btpjp-cat-pro-img-block { display: none !important; }

/* Icône SVG prestige */
.btpjp-cat-pro-icon-block {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--bjp-r-md);
  background: var(--bjp-signal-bg);
  border: 1px solid rgba(191,160,84,0.20);
  margin-bottom: 20px;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}
.btpjp-cat-pro:hover .btpjp-cat-pro-icon-block {
  background: rgba(191,160,84,0.14);
  border-color: rgba(191,160,84,0.40);
  transform: translateY(-2px);
}
.btpjp-cat-pro-icon-block svg,
.btpjp-cat-pro .btpjp-cat-icon-svg {
  display: block !important;
  width: 26px !important;
  height: 26px !important;
  color: var(--bjp-signal) !important;
  stroke: var(--bjp-signal) !important;
}

/* Barre prestige sur le côté gauche */
.btpjp-cat-pro {
  border-top: none;
  border-left: 2px solid transparent;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.btpjp-cat-pro:hover {
  border-left-color: var(--bjp-signal);
}

/* ============================================================
   HERO AVEC PHOTO — la photo est embarquée dans le thème
   ============================================================ */
.btpjp-hero-photo-bg {
  background: #0A0E14; /* fallback pendant le chargement */
}

/* Pas de pseudo-élément géométrique, la photo fait le décor */
.btpjp-hero-photo-bg::before { display: none; }

/* ============================================================
   SECTIONS SPLIT — avec photo réelle
   ============================================================ */
.btpjp-feature-split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(0.1) contrast(1.05);
  transition: transform 0.6s ease, filter 0.4s ease;
}

.btpjp-feature-split:hover .btpjp-feature-split-image img {
  transform: scale(1.03);
  filter: grayscale(0) contrast(1.08);
}

/* ============================================================
   CTA FINAL — avec photo locale (background image)
   ============================================================ */
.btpjp-cta-final-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.28) saturate(0.5);
}


/* ============================================================
   ANNUAIRE CANDIDATS — candidate-directory.php
   ============================================================ */

.btpjp-candidate-directory {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px 60px;
}

/* Header */
.btpjp-directory-header {
  background: var(--bjp-graphite);
  color: var(--bjp-paper);
  padding: 48px 32px;
  margin: 0 -16px 32px;
  position: relative;
  overflow: hidden;
}
.btpjp-directory-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(200,169,81,.04) 40px,
    rgba(200,169,81,.04) 41px
  );
}
.btpjp-directory-header-inner { position: relative; max-width: 1200px; margin: 0 auto; }
.btpjp-directory-header h1 {
  font-family: var(--bjp-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  letter-spacing: 0.02em;
  margin: 0 0 8px;
  color: var(--bjp-paper);
  text-transform: uppercase;
  line-height: 0.95;
}
.btpjp-directory-header h1 em {
  color: var(--bjp-signal);
  font-style: normal;
}
.btpjp-directory-header p { color: var(--bjp-concrete); margin: 0; font-size: 15px; }

/* Filtres */
.btpjp-directory-filters {
  background: var(--bjp-paper);
  border: 1px solid var(--bjp-fog);
  border-radius: var(--bjp-r-lg);
  padding: 20px 24px;
  margin-bottom: 32px;
  box-shadow: var(--bjp-shadow-sm);
}
.btpjp-filter-row { display: flex; gap: 12px; align-items: flex-end; flex-wrap: wrap; }
.btpjp-filter-group { display: flex; flex-direction: column; gap: 4px; }
.btpjp-filter-group label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--bjp-steel); }
.btpjp-filter-group input,
.btpjp-filter-group select {
  height: 38px;
  padding: 0 12px;
  border: 1px solid var(--bjp-fog);
  border-radius: var(--bjp-r-md);
  font-size: 14px;
  background: #fff;
  color: var(--bjp-ink);
  min-width: 160px;
}
.btpjp-filter-submit { display: flex; gap: 8px; }

/* Grille candidats */
.btpjp-candidate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

/* Carte candidat */
.btpjp-candidate-card {
  background: #fff;
  border: 1px solid var(--bjp-fog);
  border-radius: var(--bjp-r-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  position: relative;
  overflow: hidden;
}
.btpjp-candidate-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--bjp-blueprint), var(--bjp-signal));
  opacity: 0;
  transition: opacity 0.2s ease;
}
.btpjp-candidate-card:hover {
  box-shadow: var(--bjp-shadow-lg);
  transform: translateY(-2px);
}
.btpjp-candidate-card:hover::before { opacity: 1; }

.btpjp-candidate-card[data-has-cv="1"] {
  border-color: rgba(27,58,92,.15);
}

/* Top de la carte */
.btpjp-candidate-card-top {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.btpjp-candidate-avatar { position: relative; flex-shrink: 0; }
.btpjp-avatar-img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; }
.btpjp-cv-badge {
  position: absolute;
  bottom: -2px; right: -2px;
  background: var(--bjp-blueprint);
  color: #fff;
  font-size: 12px;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #fff;
}
.btpjp-candidate-info { flex: 1; min-width: 0; }
.btpjp-candidate-name {
  margin: 0 0 2px;
  font-size: 16px;
  font-weight: 700;
  color: var(--bjp-ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.btpjp-candidate-profession {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--bjp-blueprint);
}
.btpjp-candidate-meta {
  margin: 4px 0 0;
  font-size: 12px;
  color: var(--bjp-steel);
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* Bio */
.btpjp-candidate-bio {
  font-size: 13px;
  color: var(--bjp-steel);
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Skills */
.btpjp-candidate-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.btpjp-skill-tag {
  background: var(--bjp-fog);
  color: var(--bjp-graphite);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: .02em;
}
.btpjp-skill-more { background: var(--bjp-signal); color: var(--bjp-graphite); }

/* Barre de complétion */
.btpjp-completion-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--bjp-concrete);
}
.btpjp-completion-bar::before {
  content: '';
  flex: 1;
  height: 4px;
  background: var(--bjp-fog);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.btpjp-completion-fill {
  position: absolute;
  height: 4px;
  background: var(--bjp-signal);
  border-radius: 2px;
  top: 0; left: 0;
  /* width défini en inline */
}

/* Correction barre de complétion */
.btpjp-completion-bar {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 8px;
}
.btpjp-completion-bar .btpjp-completion-fill {
  position: relative;
  grid-column: 1;
  height: 4px;
  background: var(--bjp-fog);
  border-radius: 2px;
  overflow: hidden;
}
.btpjp-completion-bar .btpjp-completion-fill::after {
  content: '';
  position: absolute;
  left: 0; top: 0;
  height: 100%;
  width: var(--fill, 0%);
  background: linear-gradient(90deg, var(--bjp-blueprint), var(--bjp-signal));
  border-radius: 2px;
}

/* Actions */
.btpjp-candidate-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto;
}
.btpjp-btn-sm {
  padding: 6px 14px !important;
  font-size: 12px !important;
  height: auto !important;
}

/* Pagination */
.btpjp-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.btpjp-page-btn {
  width: 36px; height: 36px;
  border: 1px solid var(--bjp-fog);
  border-radius: var(--bjp-r-md);
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--bjp-ink);
  text-decoration: none;
  transition: all .15s ease;
}
.btpjp-page-btn:hover { background: var(--bjp-blueprint); color: #fff; border-color: var(--bjp-blueprint); }
.btpjp-page-btn.active { background: var(--bjp-graphite); color: var(--bjp-signal); border-color: var(--bjp-graphite); }

/* Modal contact candidat */
.btpjp-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
.btpjp-modal[style*="flex"] { display: flex !important; }
.btpjp-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,14,20,.7);
  backdrop-filter: blur(4px);
}
.btpjp-modal-content {
  position: relative;
  background: #fff;
  border-radius: 12px;
  padding: 36px;
  max-width: 540px;
  width: calc(100% - 32px);
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--bjp-shadow-xl);
  z-index: 1;
}
.btpjp-modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--bjp-fog);
  border: none;
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.btpjp-modal-close:hover { background: var(--bjp-concrete); color: #fff; }
.btpjp-modal-content h2 { margin: 0 0 24px; font-size: 20px; color: var(--bjp-ink); }

/* CV Tab dashboard — bouton envoyer à l'admin */
.btpjp-cv-admin-send {
  margin-top: 12px;
  padding: 10px 20px;
  background: var(--bjp-graphite);
  color: var(--bjp-paper);
  border: none;
  border-radius: var(--bjp-r-md);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s;
}
.btpjp-cv-admin-send:hover { background: var(--bjp-blueprint); }

@media (max-width: 640px) {
  .btpjp-candidate-grid { grid-template-columns: 1fr; }
  .btpjp-filter-row { flex-direction: column; }
  .btpjp-filter-group input, .btpjp-filter-group select { min-width: 100%; width: 100%; }
}

/* ============================================================
   CORRECTIFS DESIGN — v5.1
   1. Layout élargi (plus de largeur pour la zone de contenu)
   2. Sidebar : forcer le contraste texte blanc sur fond noir
      contre les surcharges du thème WordPress
   ============================================================ */

/* --- Largeur maximale élargie --- */
.btpjp-job-single {
  max-width: 1280px !important;
  padding: 0 40px 80px !important;
}

/* Layout 2 colonnes plus généreux */
.bjp-job-layout {
  grid-template-columns: 1fr 380px !important;
  gap: 64px !important;
}

/* --- Sidebar : fond blanc + textes sombres (haute spécificité) --- */
.btpjp-job-single .bjp-apply-card,
article.btpjp-job-single .bjp-apply-card,
.bjp-v2 .bjp-apply-card {
  background: #FFFFFF !important;
  color: #080C12 !important;
  border: 1px solid #E4E7ED !important;
  box-shadow: 0 4px 20px rgba(8,12,18,0.08) !important;
}

/* Tous les enfants de la card postuler héritent couleur sombre */
.btpjp-job-single .bjp-apply-card *,
.btpjp-job-single .bjp-apply-card p,
.btpjp-job-single .bjp-apply-card span:not(.bjp-apply-pulse),
.btpjp-job-single .bjp-apply-card div,
.btpjp-job-single .bjp-apply-card small,
.bjp-v2 .bjp-apply-card *,
.bjp-v2 .bjp-apply-card p,
.bjp-v2 .bjp-apply-card span:not(.bjp-apply-pulse),
.bjp-v2 .bjp-apply-card div,
.bjp-v2 .bjp-apply-card small {
  color: #080C12 !important;
}

/* Header "Offre active" */
.btpjp-job-single .bjp-apply-card__header,
.bjp-v2 .bjp-apply-card__header {
  color: #7A8496 !important;
}

/* Bouton CTA doré */
.btpjp-job-single .bjp-apply-card .bjp-cta-primary,
.btpjp-job-single .bjp-cta-primary,
.bjp-v2 .bjp-apply-card .bjp-cta-primary,
.bjp-v2 .bjp-cta-primary {
  background: #C8A951 !important;
  color: #FFFFFF !important;
  border: none !important;
}

.btpjp-job-single .bjp-apply-card .bjp-cta-primary:hover,
.btpjp-job-single .bjp-cta-primary:hover,
.bjp-v2 .bjp-cta-primary:hover {
  background: #d4b255 !important;
  color: #FFFFFF !important;
}

/* Note sous le bouton */
.btpjp-job-single .bjp-apply-note,
.bjp-v2 .bjp-apply-note {
  color: #7A8496 !important;
}

/* Bouton secondaire */
.btpjp-job-single .bjp-apply-card .bjp-cta-secondary,
.bjp-v2 .bjp-apply-card .bjp-cta-secondary {
  background: transparent !important;
  color: #3A4455 !important;
  border: 1px solid #D0D5DE !important;
}

.btpjp-job-single .bjp-apply-card .bjp-cta-secondary:hover,
.bjp-v2 .bjp-apply-card .bjp-cta-secondary:hover {
  color: #BFA054 !important;
  border-color: #BFA054 !important;
  background: rgba(191,160,84,0.05) !important;
}

/* Lien "J'ai déjà un compte" */
.btpjp-job-single .bjp-cta-login,
.bjp-v2 .bjp-cta-login {
  color: #BFA054 !important;
}

/* Label source */
.btpjp-job-single .bjp-source-label,
.bjp-v2 .bjp-source-label {
  color: #B0B8C4 !important;
  border-top-color: #E4E7ED !important;
}

/* SVG dans la sidebar */
.btpjp-job-single .bjp-apply-card svg,
.bjp-v2 .bjp-apply-card svg {
  color: inherit !important;
  stroke: currentColor !important;
}

/* Pastille verte — NE PAS hériter la couleur de texte */
.btpjp-job-single .bjp-apply-pulse,
.bjp-v2 .bjp-apply-pulse {
  background: #4ade80 !important;
  color: transparent !important;
}

/* Padding responsive ajusté */
@media (max-width: 1100px) {
  .btpjp-job-single {
    padding: 0 24px 60px !important;
  }
  .bjp-job-layout {
    grid-template-columns: 1fr 340px !important;
    gap: 40px !important;
  }
}

@media (max-width: 900px) {
  .btpjp-job-single {
    padding: 0 16px 48px !important;
  }
  .bjp-job-layout {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
}

/* ============================================================
   PLUGIN — AMÉLIORATIONS PREMIUM v2.0
   ============================================================ */

/* --- SCROLLBAR PLUGIN PREMIUM --- */
.btpjp-search-app ::-webkit-scrollbar { width: 4px; }
.btpjp-search-app ::-webkit-scrollbar-thumb { background: var(--bjp-signal); border-radius: 2px; }

/* --- SEARCH BAR PRESTIGE --- */
.btpjp-search-bar {
  background: var(--bjp-ink) !important;
  border: 1px solid rgba(191, 160, 84, 0.12) !important;
  box-shadow: 0 24px 64px rgba(8, 12, 18, 0.20) !important;
}
.btpjp-search-bar::after {
  background: linear-gradient(90deg, var(--bjp-signal), var(--bjp-signal-lt)) !important;
  height: 2px !important;
}

/* --- BOUTON RECHERCHE PRESTIGE --- */
.btpjp-btn-search {
  background: var(--bjp-signal) !important;
  font-family: var(--bjp-display) !important;
  font-weight: 500 !important;
  letter-spacing: 0.08em !important;
  box-shadow: 0 4px 16px rgba(191, 160, 84, 0.25) !important;
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.15s ease !important;
}
.btpjp-btn-search:hover {
  background: var(--bjp-signal-lt) !important;
  box-shadow: 0 8px 28px rgba(191, 160, 84, 0.40) !important;
  transform: scale(1.01) !important;
}

/* --- JOB CARDS PREMIUM HOVER --- */
.btpjp-job-card {
  transition:
    transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    border-color 0.2s ease !important;
  will-change: transform;
}
.btpjp-job-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: var(--bjp-shadow-xl) !important;
  border-color: var(--bjp-signal) !important;
}

/* --- STAT NUMBERS PRESTIGE --- */
.btpjp-hero-photo-stat .value {
  font-style: italic !important;
  color: var(--bjp-signal-lt) !important;
  text-shadow: 0 0 40px rgba(191, 160, 84, 0.25) !important;
}

/* --- TAGS PREMIUM --- */
.btpjp-badge-contract,
.btpjp-contract-type {
  font-family: var(--bjp-mono) !important;
  font-size: 10px !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  border-radius: 2px !important;
}

/* --- FILTER/FACETTES PRESTIGE --- */
.btpjp-filter-checkbox:checked + label,
.btpjp-active-filter {
  color: var(--bjp-signal) !important;
  border-color: var(--bjp-signal) !important;
}

/* --- OVERLINE PRESTIGE (avec trait or) --- */
.btpjp-overline::before {
  background: var(--bjp-signal) !important;
  height: 1px !important;
  width: 20px !important;
}
.btpjp-overline {
  color: var(--bjp-signal) !important;
  letter-spacing: 0.20em !important;
}

/* --- PAGINATION PRESTIGE --- */
.btpjp-pagination button.active,
.btpjp-page-active {
  background: var(--bjp-signal) !important;
  color: var(--bjp-ink) !important;
  border-color: var(--bjp-signal) !important;
}

/* --- DASHBOARD MENUS PRESTIGE --- */
.btpjp-nav-item.active,
.btpjp-sidebar-link.active {
  border-left: 2px solid var(--bjp-signal) !important;
  color: var(--bjp-signal) !important;
  background: var(--bjp-signal-bg) !important;
}

/* --- PRICING CARDS PRESTIGE --- */
.btpjp-plan-featured,
.btpjp-plan-recommended {
  border: 1.5px solid var(--bjp-signal) !important;
  box-shadow: var(--bjp-shadow-gold) !important;
}
.btpjp-plan-badge {
  background: var(--bjp-signal) !important;
  color: var(--bjp-ink) !important;
  font-family: var(--bjp-mono) !important;
  letter-spacing: 0.08em !important;
  font-size: 10px !important;
  text-transform: uppercase !important;
}

/* --- ALERTS / NOTIFICATIONS PRESTIGE --- */
.btpjp-alert-success {
  border-left: 3px solid var(--bjp-success) !important;
  background: rgba(39, 90, 56, 0.06) !important;
}
.btpjp-alert-warning {
  border-left: 3px solid var(--bjp-signal) !important;
  background: var(--bjp-signal-bg) !important;
}
.btpjp-alert-error,
.btpjp-alert-danger {
  border-left: 3px solid var(--bjp-danger) !important;
  background: rgba(125, 35, 25, 0.06) !important;
}

/* --- LOGIN / REGISTER PRESTIGE --- */
.btpjp-auth-container {
  max-width: 480px;
  margin: 0 auto;
}
.btpjp-auth-card {
  border: 1px solid var(--bjp-fog) !important;
  box-shadow: var(--bjp-shadow-lg) !important;
}
.btpjp-auth-title {
  font-family: var(--bjp-display) !important;
  font-style: italic !important;
}

/* --- ANIMATION LISTE OFFRES --- */
@keyframes bjp-slideup {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.btpjp-jobs-list .btpjp-job-card {
  animation: bjp-slideup 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.btpjp-jobs-list .btpjp-job-card:nth-child(2) { animation-delay: 0.05s; }
.btpjp-jobs-list .btpjp-job-card:nth-child(3) { animation-delay: 0.10s; }
.btpjp-jobs-list .btpjp-job-card:nth-child(4) { animation-delay: 0.15s; }
.btpjp-jobs-list .btpjp-job-card:nth-child(5) { animation-delay: 0.20s; }
.btpjp-jobs-list .btpjp-job-card:nth-child(6) { animation-delay: 0.25s; }

/* --- FIN PLUGIN PREMIUM v2.0 --- */

/* ============================================================
   CONTENEUR GLOBAL — LARGEUR CORRIGÉE
   ============================================================ */
.btpjp-container,
.btpjp-homepage .btpjp-container {
  max-width: 1440px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 48px !important;
  padding-right: 48px !important;
  width: 100% !important;
}
@media (max-width: 1100px) {
  .btpjp-container,
  .btpjp-homepage .btpjp-container { padding-left: 32px !important; padding-right: 32px !important; }
}
@media (max-width: 600px) {
  .btpjp-container,
  .btpjp-homepage .btpjp-container { padding-left: 20px !important; padding-right: 20px !important; }
}

/* ============================================================
   HERO — 4 CASES GRILLE 2×2
   ============================================================ */
.btpjp-hero-photo-stats {
  grid-template-columns: repeat(2, 1fr) !important;
}
.btpjp-hero-photo-stat .value {
  font-size: 40px !important;
}

/* ============================================================
   CATÉGORIES — GRILLE PLUS SERRÉE + ICÔNE AFFICHÉE
   ============================================================ */
.btpjp-cat-grid-pro {
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 20px !important;
}
@media (max-width: 1100px) { .btpjp-cat-grid-pro { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 640px)  { .btpjp-cat-grid-pro { grid-template-columns: 1fr !important; } }

.btpjp-cat-pro-large {
  grid-column: span 1 !important;
}

.btpjp-cat-pro {
  border: 1px solid var(--bjp-fog) !important;
  border-left: 2px solid transparent !important;
  background: #fff !important;
  border-radius: var(--bjp-r-lg) !important;
  padding: 0 !important;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease !important;
}
.btpjp-cat-pro:hover {
  border-left-color: var(--bjp-signal) !important;
  box-shadow: 0 12px 40px rgba(8,12,18,0.10) !important;
  transform: translateY(-4px) !important;
}
.btpjp-cat-pro-content {
  padding: 28px !important;
}
.btpjp-cat-pro-title {
  font-size: 26px !important;
  margin-bottom: 6px !important;
}
.btpjp-cat-pro-num {
  font-size: 11px !important;
  color: rgba(191,160,84,0.7) !important;
  letter-spacing: 0.08em !important;
}
.btpjp-cat-pro-list span {
  background: var(--bjp-cream) !important;
  color: var(--bjp-steel) !important;
  border: 1px solid var(--bjp-fog) !important;
  font-family: var(--bjp-mono) !important;
  font-size: 11px !important;
  letter-spacing: 0.04em !important;
  border-radius: 2px !important;
  padding: 4px 9px !important;
}
.btpjp-cat-pro-cta {
  font-family: var(--bjp-mono) !important;
  font-size: 12px !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  border-bottom: 1px solid var(--bjp-signal) !important;
  color: var(--bjp-ink) !important;
}

/* ============================================================
   SECTION PARTENAIRES — COMPACT PRESTIGE
   ============================================================ */
.btpjp-partners-section {
  padding: 80px 0;
  background: var(--bjp-cream);
  border-top: 1px solid var(--bjp-fog);
  border-bottom: 1px solid var(--bjp-fog);
}

.btpjp-partners-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 52px;
}
.btpjp-partners-title {
  font-family: var(--bjp-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 14px 0 16px;
  color: var(--bjp-ink);
}
.btpjp-partners-title .italic-accent {
  font-style: italic;
  color: var(--bjp-signal);
}
.btpjp-partners-subtitle {
  font-size: 15px;
  line-height: 1.6;
  color: var(--bjp-steel);
}

/* Grille 3 colonnes compacte */
.btpjp-partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px)  { .btpjp-partners-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .btpjp-partners-grid { grid-template-columns: 1fr; } }

/* Card compacte — layout horizontal logo + texte */
.btpjp-partner-card {
  background: #fff;
  border: 1px solid var(--bjp-fog);
  border-radius: var(--bjp-r-lg);
  padding: 20px 20px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  cursor: default;
}
.btpjp-partner-card:hover {
  box-shadow: 0 8px 28px rgba(8,12,18,0.09);
  transform: translateY(-3px);
  border-color: rgba(191,160,84,0.30);
}

/* Logo — taille fixe, pas trop grand */
.btpjp-partner-logo {
  flex-shrink: 0;
  width: 72px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--bjp-r-md);
  overflow: hidden;
  background: var(--bjp-paper);
  border: 1px solid var(--bjp-fog);
}
.btpjp-partner-logo svg {
  display: block !important;
  width: 72px !important;
  height: 40px !important;
}

.btpjp-partner-info {
  flex: 1;
  min-width: 0;
}
.btpjp-partner-info h4 {
  font-family: var(--bjp-body);
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 3px;
  color: var(--bjp-ink);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.btpjp-partner-info p {
  font-size: 12px;
  line-height: 1.4;
  color: var(--bjp-concrete);
  margin: 0 0 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.btpjp-partner-badge {
  display: inline-block;
  font-family: var(--bjp-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 2px;
  background: var(--bjp-fog);
  color: var(--bjp-concrete);
  border: 1px solid var(--bjp-fog);
}
.btpjp-partner-badge-official {
  background: rgba(39, 90, 56, 0.07) !important;
  color: #275A38 !important;
  border-color: rgba(39, 90, 56, 0.18) !important;
}

/* Featured = France Travail */
.btpjp-partner-featured {
  border-color: rgba(191,160,84,0.28);
  background: linear-gradient(135deg, #fff 70%, rgba(191,160,84,0.04));
}

/* Ligne confiance */
.btpjp-partners-trust {
  margin-top: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--bjp-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--bjp-concrete);
  text-transform: uppercase;
}
.btpjp-partners-trust svg {
  color: var(--bjp-signal);
  stroke: var(--bjp-signal);
  width: 14px; height: 14px;
  flex-shrink: 0;
  display: block;
}

/* ============================================================
   FIN — PARTENAIRES + CORRECTIONS v2.1
   ============================================================ */

/* ============================================================
   PAGE CONTACT — PREMIUM
   ============================================================ */
.btpjp-contact-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px 100px;
}
@media (max-width: 768px) { .btpjp-contact-page { padding: 40px 20px 60px; } }

.btpjp-contact-hero {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 64px;
}
.btpjp-contact-title {
  font-family: var(--bjp-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.02;
  margin: 16px 0 20px;
  color: var(--bjp-ink);
}
.btpjp-contact-title .italic-accent {
  font-style: italic;
  color: var(--bjp-signal);
}
.btpjp-contact-lead {
  font-size: 17px;
  color: var(--bjp-steel);
  line-height: 1.6;
}

.btpjp-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) { .btpjp-contact-grid { grid-template-columns: 1fr; gap: 40px; } }

/* Infos latérales */
.btpjp-contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.btpjp-contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.btpjp-contact-info-icon {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px;
  border-radius: var(--bjp-r-md);
  background: var(--bjp-signal-bg);
  border: 1px solid rgba(191,160,84,0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.btpjp-contact-info-icon svg {
  width: 20px !important;
  height: 20px !important;
  min-width: 20px;
  max-width: 20px;
  stroke: var(--bjp-signal);
  fill: none;
  display: block;
  flex-shrink: 0;
}
.btpjp-contact-info-item h3 {
  font-family: var(--bjp-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 4px;
  color: var(--bjp-ink);
}
.btpjp-contact-info-item a,
.btpjp-contact-info-item p {
  font-size: 15px;
  color: var(--bjp-steel);
  margin: 0;
}
.btpjp-contact-info-item a:hover { color: var(--bjp-signal); }

/* Formulaire */
.btpjp-contact-form-wrap {
  background: #fff;
  border: 1px solid var(--bjp-fog);
  border-radius: var(--bjp-r-xl);
  padding: 44px 40px;
  box-shadow: var(--bjp-shadow);
}
@media (max-width: 600px) { .btpjp-contact-form-wrap { padding: 28px 20px; } }

.btpjp-contact-form-wrap h2 {
  font-family: var(--bjp-display);
  font-size: 26px;
  font-weight: 400;
  margin: 0 0 32px;
  letter-spacing: -0.02em;
}

.btpjp-contact-form { display: flex; flex-direction: column; gap: 20px; }
.btpjp-form-row { display: flex; flex-direction: column; gap: 20px; }
.btpjp-form-row-2 { flex-direction: row; gap: 16px; }
@media (max-width: 600px) { .btpjp-form-row-2 { flex-direction: column; } }

.btpjp-form-field { display: flex; flex-direction: column; gap: 6px; flex: 1; }

.btpjp-form-field label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bjp-steel);
}

.btpjp-contact-form input,
.btpjp-contact-form select,
.btpjp-contact-form textarea {
  border: 1px solid var(--bjp-fog);
  border-radius: var(--bjp-r-md);
  padding: 13px 16px;
  font-family: var(--bjp-body);
  font-size: 15px;
  color: var(--bjp-ink);
  background: var(--bjp-paper);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  outline: none;
  width: 100%;
}
.btpjp-contact-form input:focus,
.btpjp-contact-form select:focus,
.btpjp-contact-form textarea:focus {
  border-color: var(--bjp-signal);
  box-shadow: 0 0 0 3px rgba(191,160,84,0.12);
  background: #fff;
}
.btpjp-contact-form textarea { resize: vertical; min-height: 120px; }
.btpjp-contact-form input::placeholder,
.btpjp-contact-form textarea::placeholder { color: var(--bjp-concrete); }

.btpjp-contact-feedback {
  padding: 14px 18px;
  border-radius: var(--bjp-r-md);
  font-size: 14px;
  font-weight: 500;
}
.btpjp-contact-feedback.btpjp-alert-success {
  background: rgba(39,90,56,0.07);
  border-left: 3px solid #275A38;
  color: #275A38;
}
.btpjp-contact-feedback.btpjp-alert-error {
  background: rgba(125,35,25,0.07);
  border-left: 3px solid #7D2319;
  color: #7D2319;
}

/* ============================================================
   LOGO NAVIGATION — TAILLE CONTRÔLÉE
   ============================================================ */
.site-header .custom-logo-link img,
#masthead .custom-logo-link img {
  max-height: 38px !important;
  max-width: 160px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
}

/* FIN CSS CONTACT + LOGO */

/* ============================================================
   FIX THÈME SOMBRE — Pages statiques du plugin
   Force un fond clair sur FAQ, Contact, Qui sommes-nous, etc.
   quand le thème WordPress actif impose un fond sombre.
   ============================================================ */
.btpjp-faq,
.btpjp-about,
.btpjp-contact,
.btpjp-cgu,
.btpjp-cookies,
.btpjp-conseils,
.btpjp-formations,
.btpjp-pricing-wrap {
  background: var(--bjp-bone, #FFFFFF) !important;
  color: var(--bjp-ink, #080C12) !important;
}

/* Hero hero-hero : certains thèmes sombres surchargent h1/p à l'intérieur */
.btpjp-faq-hero h1,
.btpjp-about-hero h1 {
  /* Hero intentionnellement sombre — on préserve le fond graphite */
}
.btpjp-faq-hero {
  background: var(--bjp-paper, #F5F4F0) !important;
  color: var(--bjp-ink, #080C12) !important;
}
.btpjp-faq-hero h1 {
  color: var(--bjp-ink, #080C12) !important;
}
.btpjp-faq-hero p {
  color: var(--bjp-concrete, #7A8496) !important;
}

/* Items FAQ */
.btpjp-faq-item {
  background: var(--bjp-bone, #FFFFFF) !important;
}
.btpjp-faq-question {
  color: var(--bjp-ink, #080C12) !important;
  background: var(--bjp-bone, #FFFFFF) !important;
}
.btpjp-faq-question[aria-expanded="true"] {
  background: var(--bjp-graphite, #141920) !important;
  color: var(--bjp-signal, #BFA054) !important;
}

/* Contenu principal About */
.btpjp-about-wrap {
  background: var(--bjp-bone, #FFFFFF) !important;
  color: var(--bjp-ink, #080C12) !important;
}

/* Contact page */
.btpjp-contact-wrap {
  background: var(--bjp-bone, #FFFFFF) !important;
}
.btpjp-contact-info-title,
.btpjp-contact-hero h1,
.btpjp-contact-hero h2 {
  color: var(--bjp-ink, #080C12) !important;
}

/* Neutraliser l'éventuel fond sombre injecté par le thème WP
   sur la balise <main> ou le wrapper de contenu principal */
body.page .entry-content > .btpjp-faq,
body.page .entry-content > .btpjp-about,
body.page .entry-content > .btpjp-contact {
  background: var(--bjp-bone, #FFFFFF) !important;
}

/* ============================================================
   FIX: FOND CLAIR PAGE OFFRE INDIVIDUELLE
   Neutralise le fond sombre du thème WordPress sur la single job
   ============================================================ */
body.single-btpjp_job,
body.single-btpjp_job .site-main,
body.single-btpjp_job main,
body.single-btpjp_job .entry-content,
body.single-btpjp_job #content,
body.single-btpjp_job #main,
body.single-btpjp_job .page-content {
  background: #FFFFFF !important;
  color: var(--bjp-ink, #080C12) !important;
}

/* Hero : fond crème élégant au lieu de noir du thème */
.bjp-job-hero {
  background: var(--bjp-cream, #FAF9F5);
  border-radius: var(--bjp-r-lg, 6px);
  padding: 40px 40px 36px !important;
  margin-bottom: 40px;
  border-bottom: none !important;
}

/* Titre offre : toujours foncé, lisible */
.bjp-job-title {
  color: var(--bjp-ink, #080C12) !important;
}

/* Breadcrumb lisible */
.bjp-breadcrumb,
.bjp-breadcrumb a,
.bjp-breadcrumb span {
  color: var(--bjp-concrete, #7A8496) !important;
}

/* Content zone */
.bjp-job-content {
  color: var(--bjp-ink, #080C12) !important;
}
.bjp-job-content h2,
.bjp-job-content h3 {
  color: var(--bjp-graphite, #141920) !important;
}

/* Placeholder "pas de description" */
.bjp-no-description {
  padding: 32px 24px;
  background: var(--bjp-fog, #E4E7ED);
  border-radius: var(--bjp-r-md, 3px);
  color: var(--bjp-concrete, #7A8496);
  font-style: italic;
  text-align: center;
}

/* ============================================================
   MODALE CV UPLOAD
   ============================================================ */

/* Label section */
.bjp-modal-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--bjp-graphite, #141920);
  margin-bottom: 8px;
  margin-top: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.bjp-modal-label:first-child { margin-top: 0; }
.bjp-modal-required { color: var(--bjp-danger, #7D2319); }

/* CV existant */
.bjp-modal-cv-existing {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #E8F4EC;
  border: 1px solid #B5D9BE;
  border-radius: var(--bjp-r-md, 3px);
  font-size: 13px;
  color: var(--bjp-success, #275A38);
  margin-bottom: 4px;
}
.bjp-cv-change-btn {
  margin-left: auto;
  background: none;
  border: 1px solid currentColor;
  border-radius: 3px;
  padding: 2px 8px;
  font-size: 11px;
  cursor: pointer;
  color: inherit;
  opacity: 0.75;
  transition: opacity 0.15s;
}
.bjp-cv-change-btn:hover { opacity: 1; }

/* Zone upload drop */
.bjp-modal-cv-upload {
  border: 2px dashed var(--bjp-fog, #E4E7ED);
  border-radius: var(--bjp-r-md, 3px);
  background: var(--bjp-cream, #FAF9F5);
  transition: border-color 0.18s, background 0.18s;
  margin-bottom: 4px;
}
.bjp-modal-cv-upload:hover,
.bjp-modal-cv-upload:focus-within {
  border-color: var(--bjp-signal, #BFA054);
  background: #FBF8EF;
}
.bjp-hidden { display: none !important; }

/* Input invisible */
.bjp-cv-file-input {
  position: absolute;
  width: 1px; height: 1px;
  opacity: 0; overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* Label drop zone */
.bjp-cv-drop-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 28px 20px;
  cursor: pointer;
  text-align: center;
  color: var(--bjp-concrete, #7A8496);
  font-size: 14px;
}
.bjp-cv-drop-label svg { color: var(--bjp-signal, #BFA054); opacity: 0.7; }
.bjp-cv-drop-label u { color: var(--bjp-blueprint, #16304F); }
.bjp-cv-drop-label small { font-size: 11px; opacity: 0.65; }

/* Nom fichier sélectionné */
.bjp-cv-filename {
  padding: 8px 14px 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--bjp-blueprint, #16304F);
  border-top: 1px solid var(--bjp-fog, #E4E7ED);
}

/* Modal backdrop section */
.bjp-modal-cv-section {
  margin-bottom: 16px;
}

/* Textarea */
#btpjp-cover-letter {
  width: 100%;
  border: 1px solid var(--bjp-fog, #E4E7ED);
  border-radius: var(--bjp-r-md, 3px);
  padding: 12px 14px;
  font-family: var(--bjp-body, sans-serif);
  font-size: 14px;
  color: var(--bjp-ink, #080C12);
  background: #FFFFFF;
  resize: vertical;
  transition: border-color 0.18s;
  box-sizing: border-box;
}
#btpjp-cover-letter:focus {
  outline: none;
  border-color: var(--bjp-signal, #BFA054);
  box-shadow: 0 0 0 3px rgba(191,160,84,0.12);
}
