/* ============================================
   LE CAGIBI — Accueil (sections preuve, pour qui, fondateurs)
   ============================================ */

/* ===== Sections ajoutées : preuve, pour qui, fondateurs ===== */

/* Wrapper générique (autonome, n'utilise que les tokens de style.css) */
.home-block { padding: clamp(56px, 8vw, 88px) 0; }
.home-block--white { background: #fff; }
.home-block--cream { background: var(--cream); }
.home-inner { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.home-head { text-align: center; max-width: 640px; margin: 0 auto clamp(36px, 5vw, 52px); }
.home-head h2 {
  font-family: 'Sora', sans-serif; font-weight: 700; color: var(--navy);
  font-size: clamp(1.6rem, 3vw, 2.2rem); line-height: 1.2; margin: 0 0 12px; letter-spacing: -0.3px;
}
.home-head p { font-size: 16px; color: var(--body); line-height: 1.6; margin: 0 auto; max-width: 560px; }


/* Bandeau chiffres / preuve */
.proof-bar { background: var(--navy); }
.proof-inner {
  max-width: var(--container); margin: 0 auto;
  padding: clamp(30px, 4vw, 44px) var(--gutter);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 3vw, 40px);
}
.proof-num { font-family: 'Sora', sans-serif; font-weight: 700; font-size: clamp(1.8rem, 3vw, 2.4rem); line-height: 1; color: #fff; letter-spacing: -0.5px; }
.proof-num--orange { color: var(--orange); }
.proof-label { font-size: 13.5px; line-height: 1.5; color: rgba(255,247,240,0.78); margin-top: 10px; }
@media (max-width: 768px) {
  .proof-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 22px;
    padding: clamp(22px, 6vw, 30px) var(--gutter);
  }
  .proof-num   { font-size: 1.4rem; }
  .proof-label { font-size: 12.5px; line-height: 1.45; margin-top: 6px; }
}
@media (max-width: 380px) {
  .proof-inner { gap: 18px 18px; padding: 22px var(--gutter); }
  .proof-num   { font-size: 1.3rem; }
}

/* À qui on s'adresse */
.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 2.4vw, 22px); }
.aud-card { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: clamp(24px, 2.8vw, 30px); box-shadow: var(--shadow); transition: transform .35s cubic-bezier(.2,.7,.3,1), box-shadow .35s ease; }
.aud-card:hover { transform: translateY(-4px); box-shadow: 0 22px 44px -22px rgba(23,28,46,0.22); }
.aud-head { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.aud-chip { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 14px; flex-shrink: 0; background: rgba(23,28,46,0.06); }
.aud-chip svg { display: block; }
.aud-tag { display: block; font-size: 11px; font-weight: 600; color: var(--body); margin-bottom: 3px; font-family: 'Inter', sans-serif; }
.aud-name { font-family: 'Sora', sans-serif; font-size: 17px; color: var(--navy); display: block; line-height: 1.3; }
.aud-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.aud-list li { display: flex; align-items: flex-start; gap: 11px; font-size: 13.5px; color: var(--body); line-height: 1.5; }
.aud-list li strong { color: var(--navy); font-weight: 700; }
.aud-ico { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 9px; flex-shrink: 0; }
.aud-ico svg { display: block; }
.aud-ico--web   { background: var(--blue-light); }
.aud-ico--learn { background: var(--green-light); }
.aud-ico--ia    { background: var(--orange-light); }
@media (max-width: 768px) { .audience-grid { grid-template-columns: 1fr; } }

/* Qui fait le travail */
.founders { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 36px); max-width: 880px; margin: 0 auto; }
.founder { display: flex; gap: 16px; align-items: flex-start; }
.founder-bar { width: 3px; align-self: stretch; border-radius: 2px; background: var(--blue); flex-shrink: 0; }
.founder--green .founder-bar { background: var(--green); }
.founder-name { font-family: 'Sora', sans-serif; font-weight: 700; color: var(--navy); font-size: 1.05rem; }
.founder-role { font-size: 12.5px; color: var(--blue); font-weight: 600; margin: 3px 0 9px; }
.founder--green .founder-role { color: #2e7040; }
.founder-desc { font-size: 14px; color: var(--body); line-height: 1.65; margin: 0; }
@media (max-width: 768px) { .founders { grid-template-columns: 1fr; } }
