/* ========================================
   PAGE ENTREPRISE - STYLES SPÉCIFIQUES
   ======================================== */

/* ========================================
   HERO DE PAGE (réutilise les styles de prestations.css)
   ======================================== */
.page-hero {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  margin-top: 80px;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 42, 74, 0.92) 0%,
    rgba(15, 42, 74, 0.85) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
}

.page-hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: #e5e7eb;
  max-width: 600px;
  margin: 0 auto;
}

/* ========================================
   SECTION PRÉSENTATION
   ======================================== */
.about-section {
  padding: 5rem 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 500px;
  margin: 0 auto;
}

.about-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: var(--orange);
  color: var(--white);
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(232, 93, 4, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.badge-number {
  font-family: "Montserrat", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

.badge-text {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

.about-eyebrow {
  display: inline-block;
  color: var(--orange);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.about-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.about-text p {
  font-size: 1.05rem;
  color: var(--gray-text);
  line-height: 1.8;
}

.about-text strong {
  color: var(--navy);
  font-weight: 600;
}

.about-signature {
  padding-top: 1.5rem;
  border-top: 2px solid var(--gray-border);
}

.signature-name {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.signature-role {
  color: var(--orange);
  font-weight: 500;
  font-size: 0.95rem;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-eyebrow {
  display: inline-block;
  color: var(--orange);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.section-eyebrow.light {
  color: var(--orange);
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-title.light {
  color: var(--white);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-text);
  line-height: 1.6;
}

/* ========================================
   SECTION VALEURS
   ======================================== */
.values-section {
  padding: 5rem 0;
  background: var(--gray-light);
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.value-card {
  padding: 2.5rem 2rem;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--gray-border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--orange);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.value-card:hover::before {
  transform: scaleY(1);
}

.value-icon {
  width: 56px;
  height: 56px;
  background: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.value-icon svg {
  width: 28px;
  height: 28px;
  color: var(--orange);
}

.value-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.value-card p {
  color: var(--gray-text);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ========================================
   SECTION CLIENTS
   ======================================== */
.clients-section {
  padding: 5rem 0;
  background: var(--gray-light);
}

.clients-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.client-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-border);
  transition: var(--transition);
}

.client-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--orange);
}

.client-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.client-icon svg {
  width: 32px;
  height: 32px;
  color: var(--white);
}

.client-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.client-card > p {
  color: var(--gray-text);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.client-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-border);
}

.client-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--navy);
  font-weight: 500;
  font-size: 0.95rem;
}

.client-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ========================================
   SECTION ZONE D'INTERVENTION
   ======================================== */
.zone-section {
  padding: 5rem 0;
  background: var(--white);
}

.zone-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.zone-text {
  font-size: 1.1rem;
  color: var(--gray-text);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.zone-text strong {
  color: var(--navy);
}

.zone-cities-large {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.city-tag-large {
  display: inline-block;
  background: var(--gray-light);
  color: var(--navy);
  padding: 0.625rem 1.25rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px solid var(--gray-border);
  transition: var(--transition);
}

.city-tag-large:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  transform: translateY(-2px);
}

/* ========================================
   CTA FINAL
   ======================================== */
.cta-section {
  padding: 5rem 0;
  background: var(--gray-light);
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cta-content h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.cta-content p {
  font-size: 1.125rem;
  color: var(--gray-text);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--orange);
  color: var(--white);
  padding: 1.25rem 2.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: 0 10px 30px rgba(232, 93, 4, 0.4);
  transition: var(--transition);
}

.btn-cta-primary:hover {
  background: var(--orange-hover);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(232, 93, 4, 0.5);
}

.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--white);
  color: var(--navy);
  padding: 1.25rem 2.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  border: 2px solid var(--navy);
  transition: var(--transition);
}

.btn-cta-secondary:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-cta-primary svg,
.btn-cta-secondary svg {
  width: 20px;
  height: 20px;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 767px) {
  .btn-cta-primary,
  .btn-cta-secondary {
    padding: 0.9rem 1.25rem;
    font-size: 1rem;
  }
}

@media (min-width: 640px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .cta-buttons {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
  }

  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .clients-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .zone-content {
    max-width: 900px;
    justify-self: center;
  }
}
