/* ══ NAVBAR SOCIÉTÉ (sans Bootstrap) ══════════════════════ */
.soc-nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--bg-main);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  gap: 24px;
}
.soc-nav__brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 1.1rem; color: var(--text);
  white-space: nowrap; text-decoration: none;
}
.soc-nav__links {
  display: flex; align-items: center; gap: 28px;
  flex: 1; justify-content: center;
}
.soc-nav__link {
  color: var(--muted); font-size: .9rem; font-weight: 500;
  text-decoration: none; transition: color .15s;
}
.soc-nav__link:hover { color: var(--text); }
.soc-nav__actions {
  display: flex; align-items: center; gap: 16px;
  white-space: nowrap;
}
.soc-nav__lang {
  color: var(--muted); font-size: .85rem; font-weight: 600;
  text-decoration: none; transition: color .15s;
}
.soc-nav__lang:hover { color: var(--text); }
@media (max-width: 680px) {
  .soc-nav { padding: 12px 16px; }
  .soc-nav__links { display: none; }
}

/* ══ BANNER LANGUE ═════════════════════════════════════════ */
.lang-banner {
  background: rgba(107,70,193,.12);
  border-bottom: 1px solid rgba(107,70,193,.25);
  text-align: center; padding: 8px 16px;
  font-size: .85rem; color: #a78bfa;
  display: none;
}
.lang-banner a { color: #a78bfa; font-weight: 600; text-decoration: underline; }
.lang-banner--visible { display: block; }

/* ══ HERO ══════════════════════════════════════════════════ */
.soc-hero {
  text-align: center;
  padding: 100px 24px 80px;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(107,70,193,.18) 0%, transparent 70%);
}
.soc-hero__label { margin-bottom: 20px; }
.soc-hero__title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800; line-height: 1.15;
  margin: 0 0 20px;
  background: linear-gradient(135deg, var(--text) 40%, #a78bfa 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: pre-line;
}
.soc-hero__subtitle {
  font-size: 1.05rem; color: var(--muted);
  max-width: 600px; margin: 0 auto 36px;
  line-height: 1.7;
}
.soc-hero__ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ══ SECTIONS COMMUNES ═════════════════════════════════════ */
.soc-section { padding: 80px 24px; }
.soc-section--alt { background: var(--bg-alt); }
.soc-section__header { text-align: center; margin-bottom: 52px; }
.soc-section__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800; margin: 8px 0 0;
}

/* ══ PITCH — 3 PILIERS ═════════════════════════════════════ */
.soc-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px; max-width: 900px; margin: 0 auto;
}
.soc-pillar__icon {
  font-size: 1.8rem; margin-bottom: 16px;
}

/* ══ PRODUITS — 2 CARDS ════════════════════════════════════ */
.soc-products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px; max-width: 800px; margin: 0 auto;
}
.soc-product {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 16px; padding: 36px 32px;
  display: flex; flex-direction: column;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.soc-product:hover {
  border-color: var(--brand); transform: translateY(-3px);
  box-shadow: 0 0 24px var(--brand-glow);
}
.soc-product__badge {
  display: inline-block;
  background: rgba(107,70,193,.15); border: 1px solid rgba(107,70,193,.3);
  color: #a78bfa; border-radius: 99px;
  padding: 3px 12px; font-size: .75rem; font-weight: 700;
  margin-bottom: 14px; text-transform: uppercase; letter-spacing: .04em;
}
.soc-product__title { font-size: 1.35rem; font-weight: 800; margin: 0 0 12px; }
.soc-product__body  { color: var(--muted); font-size: .93rem; line-height: 1.65; flex: 1; margin-bottom: 28px; }
.soc-product__cta   { align-self: flex-start; }

/* ══ WHY — LISTE DE BULLETS ════════════════════════════════ */
.soc-why-content {
  max-width: 680px; margin: 0 auto;
}
.soc-why-intro {
  color: var(--muted); font-size: 1rem; line-height: 1.75;
  margin-bottom: 32px;
}
.soc-why-points {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 14px;
}
.soc-why-points li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: .97rem; color: var(--text); line-height: 1.6;
}
.soc-why-points li::before {
  content: '→'; color: #a78bfa; font-weight: 700;
  flex-shrink: 0; margin-top: 2px;
}

/* ══ CONTACT ═══════════════════════════════════════════════ */
.soc-contact-card {
  max-width: 700px; margin: 0 auto;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 16px; padding: 48px 40px;
  text-align: center;
}
@media (max-width: 600px) {
  .soc-contact-card { padding: 32px 20px; }
}
.soc-contact-card__title { font-size: 1.7rem; font-weight: 800; margin: 0 0 14px; }
.soc-contact-card__body  { color: var(--muted); margin: 0 0 28px; line-height: 1.65; }

/* ══ FOOTER SOCIÉTÉ ═════════════════════════════════════════ */
.soc-footer {
  background: #050508; border-top: 1px solid var(--border);
  padding: 40px 32px; text-align: center;
}
.soc-footer__brand {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; font-weight: 800; font-size: 1rem; margin-bottom: 16px;
}
.soc-footer__links {
  display: flex; gap: 20px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 14px;
}
.soc-footer__links a { color: #6b7280; font-size: .83rem; transition: color .15s; }
.soc-footer__links a:hover { color: var(--text); }
.soc-footer__copy { color: #6b7280; font-size: .8rem; margin: 0; }

/* ══ CONTAINER ═════════════════════════════════════════════ */
.soc-container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
