/* =========================================
   FIX HEADER LISIBILITÉ SUR DEV. PROF
========================================= */

.header-light {
  background: #ffffff !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.header-light nav a {
  color: #0f172a !important;
}

.header-light nav a:hover {
  color: #2563eb !important;
}

.header-light .main-logo {
  color: #1D3557 !important; /* logo en bleu */
}

/* =========================================
   HERO
========================================= */

.prof-hero {
  padding: 150px 8% 70px; /* 150 pour laisser la place au header fixed */
  background: linear-gradient(to right, #f8fafc 60%, #f3f4f6);
}

.prof-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 25px;
  align-items: flex-start;
}

.prof-hero-badge {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: #fdebd3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex: 0 0 auto;
}

.prof-hero-text h1 {
  font-size: 44px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.prof-hero-text p {
  max-width: 850px;
  color: #64748b;
  margin-bottom: 18px;
}

.prof-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* =========================================
   WHY + STATS
========================================= */

.prof-why {
  background: #f8fafc;
}

.stats-grid {
  max-width: 1200px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.stat-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 22px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.stat-accent {
  background: #fff7ed;
  border-color: #fdebd3;
}

.stat-value {
  font-size: 26px;
  font-weight: 800;
  color: #2563eb;
  margin-bottom: 6px;
}

.stat-accent .stat-value {
  color: #f59e0b;
}

.stat-label {
  font-size: 13px;
  color: #64748b;
}

/* =========================================
   FORM
========================================= */

.prof-apply {
  padding: 110px 8%;
}

.prof-form-card {
  max-width: 760px;
  margin: 50px auto 0;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 55px rgba(0,0,0,0.06);
  padding: 44px;
}

.form-section-title {
  font-size: 20px;
  margin: 10px 0 18px;
}

.form-sep {
  border: 0;
  border-top: 1px solid #e2e8f0;
  margin: 28px 0;
}

.checkbox-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 18px 0 20px;
  font-size: 13px;
  color: #475569;
}

.checkbox-row input {
  margin-top: 3px;
}

.checkbox-row span {
  color: #ef4444;
}

.below-cta {
  text-align: center;
  margin-top: 20px;
}

.below-cta p {
  color: #64748b;
  margin-bottom: 12px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {
  .prof-hero-inner {
    flex-direction: column;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .prof-form-card {
    padding: 32px;
  }
}

@media (max-width: 600px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}