/* ---- Base ---- */
:root{
  --efrei-bg:#0b1020; --efrei-primary:#2f6bff; --efrei-muted:#6b7280; --efrei-card:#0f172a; --efrei-ring:rgba(47,107,255,.35);
}
.efrei-container{max-width:1100px;margin:0 auto;padding:0 20px;}
.efrei-section{padding:56px 0;}

/* ---- Hero ---- */
.entry-content .efrei-hero,
.page .efrei-hero,
.wp-site-blocks .efrei-hero {
  position: relative;
  width: 100vw !important;
  max-width: none !important;
  height: 100vh;
  margin-left: calc(-50vw + 50%) !important;
  margin-right: calc(-50vw + 50%) !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  border-radius: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  box-shadow: inset 0 0 120px rgba(0, 0, 0, 0.3);
}

/* Empêcher le défilement horizontal */
body {
  overflow-x: hidden;
}

/* ---- Features ---- */
.efrei-features{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:18px;}
.efrei-feature{background:rgba(255,255,255,.03);border:1px solid rgba(255,255,255,.08);border-radius:16px;padding:18px;color:#e5e7eb;backdrop-filter:blur(6px);}
.efrei-feature h3{color:#fff;margin:6px 0 8px;font-size:18px}
.efrei-feature__icon{width:36px;height:36px;object-fit:cover}

/* ---- Cards / Team ---- */
.efrei-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:18px;}
.efrei-card{background:#fff;border:1px solid #e5e7eb;border-radius:16px;overflow:hidden;box-shadow:0 10px 30px rgba(2,6,23,.06);}
.efrei-card__img{width:100%;height:200px;object-fit:cover;display:block}
.efrei-card__body{padding:14px}
.efrei-card__role{font-weight:600;color:#374151;margin:6px 0}
.efrei-card__bio{color:#4b5563}

/* ---- Gallery ---- */
.efrei-gallery{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:10px}
.efrei-gallery img{width:100%;height:200px;object-fit:cover;border-radius:12px}

/* ---- Tabs ---- */
.efrei-tabs{border:1px solid #e5e7eb;border-radius:16px;padding:14px;background:#fff}
.efrei-tabs .efrei-tab{display:none}
.efrei-tabs__nav{display:flex;gap:8px;flex-wrap:wrap;margin:0 0 10px}
.efrei-tabs__btn{border:1px solid #e5e7eb;background:#f3f4f6;border-radius:999px;padding:8px 14px;cursor:pointer;font-weight:700}
.efrei-tabs__btn.is-active{background:#111827;color:#fff}

/* ---- IDE ---- */
.efrei-ide__title{font-weight:800;margin:8px 0 10px}
.efrei-ide__frame{border:1px solid #e5e7eb;border-radius:12px;overflow:hidden}

/* ---- Stats ---- */
.efrei-stats{display:grid;grid-template-columns:repeat(auto-fit,minmax(160px,1fr));gap:14px}
.efrei-stat{background:#fff;border:1px solid #e5e7eb;border-radius:16px;padding:16px;text-align:center;box-shadow:0 10px 30px rgba(2,6,23,.06)}
.efrei-stat__num{font-size:34px;font-weight:800}
.efrei-stat__label{color:#4b5563}

/* ---- CTA ---- */
.efrei-cta{background:linear-gradient(135deg,#2f6bff,#0ea5e9);color:#fff;padding:40px 0;text-align:center}
.efrei-cta h3{margin:0 0 10px;font-size:26px}
