/* ========================================
   STYLES POUR LA PAGE ENTREPRISE
   ======================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
  line-height: 1.6;
  color: #202020;
  background-color: white;
}

/* Forcer Space Grotesk partout */
* {
  font-family: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Hero Entreprises */
.hero-section {
  padding: 50px 0 60px;
  background: white;
  text-align: center;
  position: relative;
}

/* Tag en haut */
.hero-tag {
  display: inline-block;
  background: #f3f4f6;
  color: #374151;
  padding: 8px 16px;
  border-radius: 20px;
  font-family: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 40px;
  border: 1px solid #e5e7eb;
}

.hero-tag .tag-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: #202020;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
}

/* L-shaped brackets subtils */
.hero-section::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 50px;
  width: 40px;
  height: 40px;
  border-top: 2px solid #e9ecef;
  border-left: 2px solid #e9ecef;
}

.hero-section::after {
  content: "";
  position: absolute;
  top: 50px;
  right: 50px;
  width: 40px;
  height: 40px;
  border-top: 2px solid #e9ecef;
  border-right: 2px solid #e9ecef;
}

.corner-bracket-bottom-left {
  position: absolute;
  bottom: 50px;
  left: 50px;
  width: 40px;
  height: 40px;
  border-bottom: 2px solid #e9ecef;
  border-left: 2px solid #e9ecef;
}

.corner-bracket-bottom-right {
  position: absolute;
  bottom: 50px;
  right: 50px;
  width: 40px;
  height: 40px;
  border-bottom: 2px solid #e9ecef;
  border-right: 2px solid #e9ecef;
}

.hero-section h1 {
  font-family: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: #202020;
  margin-bottom: 20px;
  line-height: 1.1;
  position: relative;
  z-index: 2;
}

.hero-section .highlight {
  color: #202020;
  position: relative;
  background: #ffee32;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
  box-shadow: 0 0 0 2px #ffee32;
}

.hero-section .highlight::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: #ffee32;
  opacity: 0.2;
  z-index: -1;
  border-radius: 6px;
}

.hero-section p {
  font-family: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
  font-size: 1.1rem;
  color: #6b7280;
  max-width: 500px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 2;
  line-height: 1.5;
}

/* CTA Buttons */
.hero-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.cta-primary {
  background: #202020;
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.cta-primary:hover {
  background: #374151;
  transform: translateY(-1px);
}

.cta-secondary {
  background: white;
  color: #202020;
  border: 2px solid #202020;
  padding: 12px 26px;
  border-radius: 8px;
  font-family: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.cta-secondary:hover {
  background: #f9fafb;
  transform: translateY(-1px);
}

/* Style uniforme pour tous les CTA */
.cta-button {
  background: #202020;
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.cta-button:hover {
  background: #374151;
  transform: translateY(-1px);
}

/* Section Présentation Entreprises */
.presentation-entreprises {
  padding: 80px 20px;
  background-color: white;
}

.presentation-content {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  flex-wrap: wrap;
}

.presentation-text {
  flex: 1 1 45%;
  min-width: 300px;
}

.presentation-text h2 {
  font-family: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #202020;
  line-height: 1.3;
}

.presentation-text p {
  font-family: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
  font-size: 1.1rem;
  color: #4d4d4d;
  line-height: 1.6;
  margin-bottom: 15px;
}

.presentation-image {
  flex: 1 1 45%;
  min-width: 300px;
}

.presentation-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Section Partenaire Stratégique */
.partenaire-strategique {
  padding: 80px 20px;
  background-color: #f8f9fa;
}

.partenaire-content {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  flex-wrap: wrap;
}

.partenaire-text {
  flex: 1 1 55%;
  min-width: 300px;
}

.partenaire-text h2 {
  font-family: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #202020;
  line-height: 1.3;
}

.partenaire-text p {
  font-family: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
  font-size: 1.1rem;
  color: #4d4d4d;
  line-height: 1.6;
  margin-bottom: 15px;
}

.partenaire-icon {
  flex: 1 1 35%;
  min-width: 250px;
  text-align: center;
}

.partenaire-icon img {
  width: 120px;
  height: auto;
  opacity: 0.8;
}

/* Section Méthode Recrutement */
.methode-recrutement {
  padding: 80px 20px;
  background-color: white;
}

.methode-recrutement h2 {
  font-family: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #202020;
  text-align: center;
  line-height: 1.3;
}

.etapes-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.etape {
  flex: 1 1 200px;
  max-width: 250px;
  padding: 30px;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  background-color: white;
  transition: all 0.3s ease;
  cursor: default;
  text-align: center;
}

.etape:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: #ffee32;
}

.etape img {
  width: 60px;
  height: auto;
  margin-bottom: 15px;
  opacity: 0.8;
}

.etape-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ffee32, #ffd700);
  border-radius: 50%;
  color: #202020;
  font-size: 24px;
  transition: all 0.3s ease;
}

.etape:hover .etape-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(255, 238, 50, 0.3);
}

.etape h3 {
  font-family: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #202020;
}

.etape p {
  font-family: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
  font-size: 0.95rem;
  color: #4d4d4d;
  line-height: 1.5;
}

/* Section Développement Équipes */
.developpement-equipes {
  padding: 80px 20px;
  background-color: #f8f9fa;
  text-align: center;
}

.developpement-equipes h2 {
  font-family: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #202020;
}

.separator {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #ffee32, #ffd100);
  margin: 0 auto 30px;
  border-radius: 2px;
}

.developpement-equipes p {
  font-family: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
  font-size: 1.1rem;
  color: #4d4d4d;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 20px;
}

.highlight {
  color: #202020;
  font-weight: 600;
  background: #ffee32;
  padding: 2px 6px;
  border-radius: 4px;
  box-shadow: 0 0 0 2px #ffee32;
}

/* Section CTA RDV */
.cta-rdv {
  padding: 80px 20px;
  background-color: white;
  text-align: center;
}

.cta-rdv h2 {
  font-family: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #202020;
}

.cta-rdv p {
  font-family: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
  font-size: 1.1rem;
  color: #4d4d4d;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 30px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2.2rem;
  }

  .presentation-content,
  .partenaire-content {
    flex-direction: column;
    text-align: center;
  }

  .etapes-container {
    gap: 20px;
  }

  .etape {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-section h1 {
    font-size: 1.8rem;
  }

  .hero-section,
  .presentation-entreprises,
  .partenaire-strategique,
  .methode-recrutement,
  .developpement-equipes,
  .cta-rdv {
    padding: 60px 20px;
  }
}

/* Centrage fiable des éléments du hero */
.hero-section > .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-section > .container > .hero-tag,
.hero-section > .container > h1,
.hero-section > .container > p {
  align-self: center;
  margin-left: auto;
  margin-right: auto;
}

/* === Entreprise hero (namespaced, avoids conflicts) === */
.entreprise-hero {
  padding: 50px 0 60px;
  background: white;
  text-align: center;
  position: relative;
}

.entreprise-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.entreprise-tag {
  display: inline-block;
  background: #f3f4f6;
  color: #374151;
  padding: 8px 16px;
  border-radius: 20px;
  font-family: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 40px;
  border: 1px solid #e5e7eb;
}

.entreprise-tag .tag-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: #202020;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
}

/* Subtle corner brackets */
.entreprise-hero::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 50px;
  width: 40px;
  height: 40px;
  border-top: 2px solid #e9ecef;
  border-left: 2px solid #e9ecef;
}

.entreprise-hero::after {
  content: "";
  position: absolute;
  top: 50px;
  right: 50px;
  width: 40px;
  height: 40px;
  border-top: 2px solid #e9ecef;
  border-right: 2px solid #e9ecef;
}

.entreprise-hero h1 {
  font-family: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: #202020;
  margin-bottom: 20px;
  line-height: 1.1;
  position: relative;
  z-index: 2;
}

.entreprise-hero .highlight {
  color: #202020;
  position: relative;
  background: #ffee32;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
  box-shadow: 0 0 0 2px #ffee32;
}

.entreprise-hero .highlight::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: #ffee32;
  opacity: 0.2;
  z-index: -1;
  border-radius: 6px;
}

.entreprise-hero p {
  font-family: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
  font-size: 1.1rem;
  color: #6b7280;
  max-width: 500px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 2;
  line-height: 1.5;
}

.entreprise-hero-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
