/* ═══════════════════════════════════════════════════════════
   PAGE À PROPOS — CORICH IET
═══════════════════════════════════════════════════════════ */

/* ── HERO PAGE INTÉRIEURE ─────────────────────────────────── */
.page-hero {
  background: linear-gradient(145deg, #1a1d3b 0%, #2d1060 50%, #0f3460 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.page-hero-accent {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.page-hero-accent-1 { width:500px;height:500px; top:-150px; right:-100px; background:radial-gradient(circle,rgba(54,162,206,.15),transparent 70%); }
.page-hero-accent-2 { width:350px;height:350px; bottom:-100px; left:-80px;  background:radial-gradient(circle,rgba(130,190,96,.12),transparent 70%); }

.page-hero-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.7); font-size: .75rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 7px 18px; border-radius: 50px; margin-bottom: 20px;
}
.page-hero h1 {
  font-family: var(--font-heading); font-size: clamp(2rem,4.5vw,3.2rem);
  font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: 18px;
}
.page-hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,.72);
  line-height: 1.75; max-width: 600px;
}
.page-hero-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  margin-top: 32px; font-size: .8rem; color: rgba(255,255,255,.45);
}
.page-hero-breadcrumb a { color: rgba(255,255,255,.6); text-decoration: none; }
.page-hero-breadcrumb a:hover { color: #fff; }
.page-hero-breadcrumb i { font-size: .65rem; }

/* Stats dans le hero */
.page-hero-stats {
  display: flex; gap: 40px; flex-wrap: wrap; margin-top: 44px;
  padding-top: 36px; border-top: 1px solid rgba(255,255,255,.1);
}
.phs-item strong {
  display: block; font-family: var(--font-heading);
  font-size: 2rem; font-weight: 800; color: #fff;
}
.phs-item span { font-size: .76rem; color: rgba(255,255,255,.5); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }

/* ── SECTION HISTOIRE ─────────────────────────────────────── */
.section-histoire { padding: 100px 0; background: #fff; }

/* styles timeline supprimés */

/* Image bloc histoire */
.histoire-img-wrap {
  position: relative; height: 100%;
}
.histoire-img-main {
  width: 100%; border-radius: 24px; overflow: hidden;
  background: linear-gradient(135deg,rgba(78,43,134,.08),rgba(54,162,206,.08));
  border: 1px solid rgba(78,43,134,.1);
  display: flex; align-items: center; justify-content: center;
  min-height: 420px;
}
.histoire-img-main img { width:100%; height:100%; object-fit:cover; border-radius:24px; }
.histoire-img-main .logo-placeholder {
  padding: 60px; opacity: .7;
}
.histoire-img-main .logo-placeholder img { max-width: 260px; }

.histoire-badge {
  position: absolute; bottom: -20px; right: -16px;
  background: var(--grad-full); color: #fff;
  border-radius: 16px; padding: 20px 26px;
  box-shadow: 0 12px 36px rgba(78,43,134,.3);
  min-width: 160px; text-align: center;
}
.histoire-badge strong { display:block; font-family:var(--font-heading); font-size:2rem; font-weight:800; }
.histoire-badge span   { font-size:.75rem; opacity:.85; font-weight:600; text-transform:uppercase; letter-spacing:.05em; }

/* ── SECTION VALEURS ──────────────────────────────────────── */
.section-valeurs { padding: 100px 0; background: var(--c-light); position: relative; }
.section-valeurs::before { content:''; position:absolute; top:0; left:0; right:0; height:4px; background:var(--grad-full); }

.valeur-card {
  background: #fff; border-radius: 20px; padding: 36px 28px;
  height: 100%; border: 1px solid rgba(78,43,134,.07);
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative; overflow: hidden;
}
.valeur-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  opacity: 0; transition: opacity .25s;
}
.valeur-card.vc-green::after { background: var(--c-green); }
.valeur-card.vc-blue::after  { background: var(--c-blue);  }
.valeur-card.vc-purple::after{ background: var(--c-purple);}
.valeur-card.vc-navy::after  { background: var(--c-navy);  }
.valeur-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(78,43,134,.1); }
.valeur-card:hover::after { opacity: 1; }

.vc-icon {
  width: 60px; height: 60px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 20px;
}
.vc-green  .vc-icon { background:rgba(130,190,96,.15); color:var(--c-green); }
.vc-blue   .vc-icon { background:rgba(54,162,206,.15);  color:var(--c-blue);  }
.vc-purple .vc-icon { background:rgba(78,43,134,.12);   color:var(--c-purple);}
.vc-navy   .vc-icon { background:rgba(26,29,59,.08);    color:var(--c-navy);  }

.valeur-card h4 { font-family:var(--font-heading); font-size:1.05rem; font-weight:700; color:var(--c-navy); margin-bottom:10px; }
.valeur-card p  { font-size:.875rem; color:var(--c-text); line-height:1.75; margin:0; }

/* ── SECTION MÉTHODOLOGIE ─────────────────────────────────── */
.section-methodo { padding: 100px 0; background: #fff; }

.methodo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--c-border);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--c-border);
  box-shadow: 0 12px 40px rgba(78,43,134,.07);
}
.methodo-step {
  background: #fff; padding: 32px 28px;
  position: relative; transition: background .22s ease;
}
.methodo-step:hover { background: var(--c-light); }
.methodo-step:hover .ms-number { color: var(--c-purple); }

.ms-number {
  font-family: var(--font-heading); font-size: 2.8rem; font-weight: 900;
  color: rgba(78,43,134,.08); line-height: 1; margin-bottom: 12px;
  transition: color .22s;
}
.ms-title { font-family: var(--font-heading); font-size: .97rem; font-weight: 700; color: var(--c-navy); margin-bottom: 8px; }
.ms-desc  { font-size: .82rem; color: var(--c-text); line-height: 1.65; margin: 0; }

.ms-icon {
  position: absolute; top: 20px; right: 24px;
  width: 36px; height: 36px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: .88rem;
}
.methodo-step:nth-child(1)  .ms-icon { background:rgba(130,190,96,.12); color:var(--c-green);  }
.methodo-step:nth-child(2)  .ms-icon { background:rgba(54,162,206,.12); color:var(--c-blue);   }
.methodo-step:nth-child(3)  .ms-icon { background:rgba(78,43,134,.10);  color:var(--c-purple); }
.methodo-step:nth-child(4)  .ms-icon { background:rgba(130,190,96,.12); color:var(--c-green);  }
.methodo-step:nth-child(5)  .ms-icon { background:rgba(54,162,206,.12); color:var(--c-blue);   }
.methodo-step:nth-child(6)  .ms-icon { background:rgba(78,43,134,.10);  color:var(--c-purple); }
.methodo-step:nth-child(7)  .ms-icon { background:rgba(130,190,96,.12); color:var(--c-green);  }
.methodo-step:nth-child(8)  .ms-icon { background:rgba(54,162,206,.12); color:var(--c-blue);   }
.methodo-step:nth-child(9)  .ms-icon { background:rgba(78,43,134,.10);  color:var(--c-purple); }

/* Bannière résultat */
.methodo-result {
  margin-top: 40px;
  background: var(--grad-full);
  border-radius: 18px; padding: 32px 40px;
  display: flex; align-items: center; gap: 24px;
  box-shadow: 0 12px 40px rgba(78,43,134,.2);
}
.methodo-result-icon { font-size: 2.2rem; flex-shrink: 0; }
.methodo-result h4 { font-family:var(--font-heading); font-size:1.1rem; font-weight:700; color:#fff; margin:0 0 4px; }
.methodo-result p  { font-size:.88rem; color:rgba(255,255,255,.8); margin:0; }

/* ── SECTION ÉQUIPE ───────────────────────────────────────── */
.section-equipe { padding: 100px 0; background: var(--c-light); }

.team-card {
  background: #fff; border-radius: 20px;
  overflow: hidden; border: 1px solid rgba(78,43,134,.07);
  transition: transform .25s ease, box-shadow .25s ease;
  height: 100%;
}
.team-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(78,43,134,.12); }

.team-card-photo {
  width: 100%; aspect-ratio: 4/3; overflow: hidden;
  background: linear-gradient(135deg, rgba(78,43,134,.1), rgba(54,162,206,.1));
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.team-card-photo img { width:100%; height:100%; object-fit:cover; }
.team-card-photo .tc-initials {
  font-family: var(--font-heading); font-size: 2.5rem; font-weight: 800;
  background: var(--grad-full); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}

.team-card-body { padding: 24px; }
.team-card-body h5 { font-family:var(--font-heading); font-size:1rem; font-weight:700; color:var(--c-navy); margin-bottom:4px; }
.team-card-role { font-size:.8rem; color:var(--c-blue); font-weight:600; margin-bottom:12px; }
.team-card-bio  { font-size:.83rem; color:var(--c-text); line-height:1.65; margin-bottom:16px; }
.team-card-footer { display:flex; align-items:center; justify-content:flex-end; padding-top:14px; border-top:1px solid var(--c-border); }
.tc-linkedin { width:32px;height:32px;border-radius:8px;background:rgba(54,162,206,.1);display:flex;align-items:center;justify-content:center;color:var(--c-blue);text-decoration:none;transition:all .2s; }
.tc-linkedin:hover { background:var(--c-blue); color:#fff; }

/* Carte directrice (mise en avant) */
.team-card.tc-featured {
  border: 2px solid var(--c-purple);
  position: relative;
}
.team-card.tc-featured::before {
  content: 'Directrice Générale';
  position: absolute; top: 16px; left: 16px; z-index: 2;
  background: var(--grad-full); color: #fff;
  font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 50px;
}

/* ── CTA REJOINDRE ────────────────────────────────────────── */
.section-cta-about {
  padding: 80px 0;
  background: linear-gradient(145deg, #1a1d3b 0%, #2d1060 100%);
  position: relative; overflow: hidden;
}
.section-cta-about::before {
  content:''; position:absolute; inset:0;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 28px 28px;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 991px) {
  .section-histoire { padding: 72px 0; }
  .section-valeurs  { padding: 72px 0; }
  .section-methodo  { padding: 72px 0; }
  .section-equipe   { padding: 72px 0; }
  .histoire-badge { position: static; margin-top: 20px; display: inline-block; }
}
@media (max-width: 767px) {
  /* Hero stats */
  .page-hero-stats { gap: 20px; flex-wrap: wrap; }
  .phs-item { min-width: calc(50% - 10px); }
  /* Methodo */
  .methodo-grid { grid-template-columns: 1fr 1fr; }
  .methodo-result { flex-direction: column; text-align: center; gap: 12px; }
  /* Équipe */
  .team-card-photo { aspect-ratio: 16/9; }
  /* CTA */
  .section-cta-about { padding: 60px 0; }
  /* Piliers histoire */
  .histoire-img-main { min-height: 280px; }
}
@media (max-width: 480px) {
  .methodo-grid { grid-template-columns: 1fr; }
  .phs-item { min-width: 100%; }
  .valeur-card { padding: 28px 20px; }
}