/* ===============================
   PAGES INTERNES
   =============================== */

.page-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(1, 73, 142, 0.70), rgba(10, 31, 143, 0.72)),
              url('../images/hero.jpg') center/cover no-repeat;
  overflow: hidden;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.42) 0%,
    rgba(0, 0, 0, 0.18) 48%,
    rgba(0, 0, 0, 0.08) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  color: #fff;
  padding: 90px 0;
}

.page-hero-content h1 {
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.08;
  margin-bottom: 18px;
  font-weight: 800;
}

.page-hero-content p {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255,255,255,0.92);
  max-width: 700px;
}

.page-section {
  padding: 90px 0;
}

.page-section-light {
  background: linear-gradient(135deg, #f7f9fc 0%, #eef4fb 100%);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 40px;
}

.section-heading.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-heading h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.14;
  color: var(--primary-dark);
  margin-bottom: 14px;
}

.section-heading p {
  color: #667085;
  line-height: 1.8;
  font-size: 16px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 34px;
  align-items: start;
}

.about-text h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.14;
  margin-bottom: 18px;
  color: var(--primary-dark);
}

.about-text p {
  color: #667085;
  line-height: 1.9;
  margin-bottom: 16px;
}

.about-side-card,
.value-card,
.info-card,
.team-card {
  background: #fff;
  border: 1px solid #dce8f5;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(1, 73, 142, 0.08);
}

.about-side-card h3,
.value-card h3,
.info-card h3,
.team-card h3 {
  color: var(--primary);
  margin-bottom: 12px;
  font-size: 22px;
}

.about-side-card ul {
  list-style: none;
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
}

.about-side-card li {
  position: relative;
  padding-left: 18px;
  color: #667085;
  line-height: 1.7;
}

.about-side-card li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  position: absolute;
  left: 0;
  top: 10px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.value-card p,
.info-card p,
.team-card p {
  color: #667085;
  line-height: 1.8;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.team-photo-placeholder {
  height: 220px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(1,73,142,0.10), rgba(198,124,88,0.14));
  border: 1px dashed rgba(1,73,142,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--primary);
  font-weight: 700;
}

.page-cta {
  padding: 0 0 90px;
}

.page-cta-box {
  background: linear-gradient(135deg, #0a1f8f 0%, #01498e 100%);
  color: #fff;
  border-radius: 28px;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  box-shadow: 0 22px 50px rgba(1, 73, 142, 0.16);
}

.page-cta-box h2 {
  font-size: clamp(28px, 3vw, 40px);
  margin-bottom: 10px;
}

.page-cta-box p {
  color: rgba(255,255,255,0.88);
  line-height: 1.8;
  max-width: 650px;
}

.page-cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  font-weight: 700;
  transition: 0.3s ease;
}

.btn-outline-dark:hover {
  background: rgba(255,255,255,0.12);
}

/* Responsive */
@media (max-width: 1024px) {
  .about-grid,
  .values-grid,
  .cards-3,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .page-cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .page-section {
    padding: 72px 0;
  }

  .page-hero {
    min-height: 42vh;
  }

  .page-hero-content {
    padding: 72px 0;
  }

  .page-cta {
    padding-bottom: 72px;
  }

  .page-cta-box {
    padding: 28px;
  }

  .page-cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .page-cta-actions a {
    width: 100%;
  }
}

/* ===============================
   INSPIRATION / BLOG
   =============================== */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: #fff;
  border: 1px solid #dce8f5;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(1, 73, 142, 0.08);
  transition: 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px rgba(1, 73, 142, 0.12);
}

.article-placeholder {
  min-height: 200px;
  background: linear-gradient(135deg, rgba(1,73,142,0.10), rgba(198,124,88,0.16));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-weight: 700;
}

.blog-content {
  padding: 20px;
}

.blog-content h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--primary-dark);
}

.blog-content p {
  color: #667085;
  line-height: 1.7;
}

.lead-magnet-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  background: #fff;
  border-radius: 28px;
  padding: 30px;
  border: 1px solid #dce8f5;
}

.lead-form {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.lead-form input {
  flex: 1;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid #dce8f5;
}

.search-box {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.search-form {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.search-form input {
  flex: 1;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid #dce8f5;
}

/* Responsive */
@media (max-width: 1024px) {
  .blog-grid,
  .lead-magnet-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .lead-form,
  .search-form {
    flex-direction: column;
  }
}