/* ============================================================
   Page "Recrutement" — hero dédié (le formulaire réutilise les
   styles existants .contact-form-recrutement de style.css)
   ============================================================ */

/* ── NAVBAR transparente sur le hero, blanche au scroll ──
   Comportement identique au reste du site (classe .sticky ajoutée par js/scripts.js) */
.navbar{
  position: fixed !important;
}

.rct-hero{
  min-height: clamp(460px, 26vw, 580px);
  padding: 100px 20px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    linear-gradient(160deg, rgba(13,69,132,0.85) 0%, rgba(9,32,64,0.78) 100%),
    url('../images/equipes/Equipe-Phenix-Solar-sport.webp');
  background-size: cover;
  background-position: center 30%;
}
.rct-hero h1{
  font-family: 'Inter', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}
.rct-hero p{
  color: rgba(255,255,255,0.92);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

@media (max-width: 720px){
  .rct-hero{ padding: 70px 20px 56px; }
  .rct-hero h1{ font-size: 1.7rem; }
}

/* ── Pourquoi nous rejoindre ── */
.rct-why{
  padding: 36px 20px 60px;
  background: #fff;
}
.rct-why h2{
  font-family: 'Inter', sans-serif;
  text-align: center;
  color: #0D4584;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 40px;
}
.rct-why-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.rct-why-card{
  background: #f7f9fc;
  border: 1px solid #e6eaf1;
  border-radius: 12px;
  padding: 28px 22px;
  text-align: center;
  transition: transform 200ms ease, border-color 200ms ease;
}
.rct-why-card:hover{
  transform: translateY(-4px);
  border-color: #efa906;
}
.rct-why-icon{
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #0D4584;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin: 0 auto 16px;
}
.rct-why-icon svg{
  width: 28px;
  height: 28px;
}
.rct-why-icon svg.icon-large{
  width: 38px;
  height: 38px;
}
.rct-why-icon-yellow{
  background: #efa906;
  color: #fff;
}
.rct-why-card h3{
  font-size: 1.05rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 8px;
}
.rct-why-card p{
  font-size: 0.9rem;
  color: #4a5568;
  line-height: 1.55;
}

/* ── Process de recrutement ── */
.rct-process{
  padding: 60px 20px;
  background: linear-gradient(160deg, #f7f9fc 0%, #eef2f9 100%);
}
.rct-process h2{
  font-family: 'Inter', sans-serif;
  text-align: center;
  color: #0D4584;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 40px;
}
.rct-process-steps{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}
.rct-process-step{
  flex: 1;
  min-width: 200px;
  text-align: center;
}
.rct-process-num{
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #efa906;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 auto 14px;
}
.rct-process-step h3{
  font-size: 1rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 6px;
}
.rct-process-step p{
  font-size: 0.88rem;
  color: #4a5568;
  line-height: 1.55;
}

@media (max-width: 900px){
  .rct-why-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px){
  .rct-why-grid{ grid-template-columns: 1fr; }
  .rct-why h2, .rct-process h2{ font-size: 1.5rem; }
}
