/* ===================================
   entreprises.css
   =================================== */

/* ---- Hero ---- */
.en-hero {
  background: linear-gradient(140deg, #1b2c5e 0%, #2a3f7e 60%, #1e3570 100%);
  padding: 88px 0 80px;
  color: var(--white);
}

.en-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.en-hero .hero__label { color: rgba(255,255,255,.55); }

.en-hero__title {
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--white);
}

.en-hero__accent { color: var(--coral); }

.en-hero__sub {
  font-size: .92rem;
  line-height: 1.78;
  opacity: .85;
  max-width: 500px;
  margin-bottom: 36px;
}

.en-hero__btns { display: flex; flex-wrap: wrap; gap: 14px; }

.btn--outline-light {
  border: 2px solid rgba(255,255,255,.45);
  color: var(--white);
  background: transparent;
  font-family: var(--font);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 14px 22px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all .2s;
  cursor: pointer;
}
.btn--outline-light:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.7); }

/* Credentials */
.en-hero__credentials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.en-cred {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: background .2s, transform .2s;
}
.en-cred:hover { background: rgba(255,255,255,.13); transform: translateX(6px); }

.en-cred__icon { font-size: 1.8rem; flex-shrink: 0; }

.en-cred div { display: flex; flex-direction: column; gap: 3px; }

.en-cred strong {
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
}

.en-cred span {
  font-size: .78rem;
  opacity: .65;
  line-height: 1.4;
}

/* ---- Différenciants ---- */
.en-diff { padding: 88px 0; }

.en-diff__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.en-diff__title {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 24px;
}

.en-diff__text > p {
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.78;
  margin-bottom: 16px;
}

.en-diff__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--coral);
  letter-spacing: .04em;
  margin-top: 8px;
  transition: gap .15s;
}
.en-diff__link:hover { gap: 10px; }

/* Diff cards */
.en-diff__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.en-diff__card {
  background: var(--gray-light);
  border-radius: var(--radius);
  border: 1px solid var(--gray-mid);
  padding: 24px 20px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.en-diff__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--coral);
}

.en-diff__card-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--coral);
  opacity: .35;
  line-height: 1;
  margin-bottom: 10px;
}

.en-diff__card h3 {
  font-size: .88rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.en-diff__card p {
  font-size: .82rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ---- Offres ---- */
.en-offres__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.en-offre {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .2s;
}
.en-offre:hover { transform: translateY(-5px); }

.en-offre__icon {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.en-offre h3 {
  font-size: .92rem;
  font-weight: 800;
  letter-spacing: .04em;
}

.en-offre > p {
  font-size: .84rem;
  opacity: .8;
  line-height: 1.65;
}

.en-offre ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.en-offre ul li {
  font-size: .82rem;
  opacity: .75;
  padding-left: 16px;
  position: relative;
  line-height: 1.45;
}
.en-offre ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  background: var(--coral);
  border-radius: 50%;
}

/* ---- Méthode ---- */
.en-methode__intro {
  text-align: center;
  color: var(--text-light);
  font-size: .9rem;
  margin-top: -28px;
  margin-bottom: 56px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.en-steps {
  display: flex;
  flex-direction: column;
  max-width: 760px;
  margin: 0 auto;
}

.en-step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.en-step__num {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  box-shadow: 0 0 0 6px var(--white);
  position: relative;
  z-index: 1;
}

.en-step__body {
  padding: 4px 0 36px;
  flex: 1;
}

.en-step__body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.en-step__body p {
  font-size: .87rem;
  color: var(--text-light);
  line-height: 1.72;
}

.en-step__connector {
  width: 2px;
  height: 28px;
  background: var(--gray-mid);
  margin-left: 25px;
}

/* ---- Engagement ---- */
.en-engagement {
  background: linear-gradient(135deg, #1b2c5e 0%, #2a3f7e 100%);
  padding: 88px 0;
  color: var(--white);
}

.en-engagement__inner { max-width: 820px; margin: 0 auto; }

.en-engagement__label {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  color: var(--coral);
  margin-bottom: 16px;
}

.en-engagement__title {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 24px;
}

.en-engagement__content > p {
  font-size: .9rem;
  opacity: .8;
  line-height: 1.78;
  margin-bottom: 14px;
  max-width: 640px;
}

.en-engagement__guarantees {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.en-guarantee {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 20px;
  transition: background .2s;
}
.en-guarantee:hover { background: rgba(255,255,255,.13); }

.en-guarantee__icon { font-size: 1.5rem; flex-shrink: 0; }

.en-guarantee div { display: flex; flex-direction: column; gap: 4px; }

.en-guarantee strong {
  font-size: .88rem;
  font-weight: 700;
  color: var(--white);
}

.en-guarantee span {
  font-size: .79rem;
  opacity: .65;
  line-height: 1.4;
}

/* ---- Secteurs ---- */
.en-secteurs__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.en-secteur {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius);
  padding: 24px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform .2s, border-color .2s;
  cursor: default;
}
.en-secteur:hover {
  transform: translateY(-4px);
  border-color: var(--navy);
}

.en-secteur__icon { font-size: 1.8rem; }

.en-secteur span:last-child {
  font-size: .75rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}

/* ---- Hero tagline ---- */
.en-hero__tagline {
  font-size: 1rem;
  font-style: italic;
  font-weight: 500;
  color: rgba(255,255,255,.6);
  margin-bottom: 16px;
  margin-top: -10px;
}

/* ---- Section Rachel ---- */
.en-rachel__inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
}

.en-rachel__photo {
  position: relative;
}

.en-rachel__photo img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 3/4;
  object-position: top;
  background: var(--gray-mid);
  min-height: 320px;
  display: block;
}

.en-rachel__linkedin {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: #0077B5;
  color: var(--white);
  padding: 8px 16px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,119,181,.4);
}

.en-rachel__label {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--coral);
  margin-bottom: 14px;
}

.en-rachel__title {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 20px;
}

.en-rachel__content > p {
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.78;
  margin-bottom: 14px;
}

.en-rachel__stats {
  display: flex;
  gap: 32px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-mid);
}

.en-rachel__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.en-rachel__stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--coral);
  line-height: 1;
}

.en-rachel__stat-label {
  font-size: .72rem;
  font-weight: 600;
  color: var(--text-light);
}

/* ---- Témoignages enrichis ---- */
.en-temoignages__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.en-linkedin-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0077B5;
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 20px;
  transition: background .2s;
  white-space: nowrap;
}
.en-linkedin-badge:hover { background: #005a8e; }

.testimonial--linkedin {
  position: relative;
}

.testimonial__source {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .68rem;
  font-weight: 700;
  color: #0077B5;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1100px) {
  .en-secteurs__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  .en-offres__grid { grid-template-columns: 1fr; }
  .en-engagement__guarantees { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .en-hero__inner    { grid-template-columns: 1fr; gap: 48px; }
  .en-diff__inner    { grid-template-columns: 1fr; gap: 40px; }
  .en-diff__cards    { grid-template-columns: 1fr 1fr; }
  .en-rachel__inner  { grid-template-columns: 1fr; gap: 40px; }
  .en-rachel__photo  { max-width: 260px; }
  .en-temoignages__header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .en-secteurs__grid { grid-template-columns: repeat(2, 1fr); }
  .en-diff__cards  { grid-template-columns: 1fr; }
  .en-hero__btns   { flex-direction: column; }
  .en-hero__btns .btn { justify-content: center; }
}
