/* =========================================================
   Belife Insurance 2026 – Design System (Landing Groupe)
   Palette principale :
   - Orange Bold      : #D0643D
   - Jaune Horizon    : #D4A456
   - Rouge Héritage   : #5B1A1C
   - Noir de Chine    : #141413
   - Gris Clair       : #E3DFD7
   ========================================================= */

:root {
  --orange-bold: #d0643d;
  --jaune-horizon: #d4a456;
  --rouge-heritage: #5b1a1c;
  --noir-de-chine: #141413;
  --gris-clair: #e3dfd7;
}

* { box-sizing: border-box; }

body {
  font-family: "Kind Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--noir-de-chine);
  background-color: #ffffff;
}

.about-title, .services-title, .values-title, .contact-title {
  font-family: "Kind Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
}

.about-text, .services-panel-text, .markets-text { font-weight: 400; }

/* Barre top orange */
.top-bar {
  background-color: var(--orange-bold);
  color: #fff;
  font-size: 0.875rem;
  padding: 0.35rem 0;
}
.top-bar .brand-mini {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
}
.top-bar .brand-mini i { font-size: 0.8rem; }
.top-bar .lang-switch { font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }
.top-bar .lang-switch a { color: #fff; text-decoration: none; opacity: 0.9; }
.top-bar .lang-switch a:hover { opacity: 1; }

/* Navbar */
.navbar-belife {
  position: sticky;
  top: 0;
  z-index: 1030;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  background-color: #ffffff;
  transition: padding 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}
.navbar-belife .navbar-brand img {
  height: 100px;
  transition: height 0.22s ease, transform 0.22s ease;
}
.navbar-belife.navbar-belife--compact { padding-top: 0.4rem; padding-bottom: 0.4rem; box-shadow: 0 6px 18px rgba(0,0,0,0.12); }
.navbar-belife.navbar-belife--compact .navbar-brand img { height: 78px; }
.navbar-belife .navbar-nav { column-gap: 1.4rem; }

.navbar-belife .dropdown-menu {
  border-radius: 0;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
  padding: 0.55rem 0;
  font-size: 0.94rem;
}

/* Recherche navbar */
.navbar-actions { position: relative; }
.navbar-search { position: relative; }
.navbar-search-toggle { position: relative; z-index: 2; }
.navbar-search-form {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transition: width 0.25s ease, opacity 0.2s ease, transform 0.25s ease;
}
.navbar-search-input {
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.08);
  padding: 0.45rem 1rem;
  font-size: 0.9rem;
  min-width: 0;
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}
.navbar-search.is-open .navbar-search-form { width: 260px; opacity: 1; pointer-events: auto; transform: translateY(-50%); }
.navbar-search.is-open .navbar-search-toggle { color: var(--orange-bold); }

@media (max-width: 991.98px) {
  .navbar-search.is-open .navbar-search-form { width: 200px; }
}

@media (min-width: 992px) {
  .navbar-belife .dropdown-menu {
    opacity: 0;
    transform: translateY(8px);
    visibility: hidden;
    display: block;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  }
  .navbar-belife .nav-item.dropdown:hover > .dropdown-menu {
    opacity: 1; transform: translateY(0); visibility: visible;
  }
}

@media (max-width: 991.98px) {
  .navbar-belife .dropdown-menu { display: none; box-shadow: none; border: 0; padding: 0.35rem 0; }
  .navbar-belife .dropdown-menu.show { display: block; }
}

.navbar-belife .dropdown-menu, .navbar-belife .dropdown-item,
.navbar-belife .icon-btn, .navbar-belife .btn-network,
.navbar-belife .nav-link.active::after { border-radius: 0; }

.navbar-belife .dropdown-menu.show { opacity: 1; transform: translateY(0); visibility: visible; }
.navbar-belife .dropdown-item { padding: 0.35rem 1.2rem; color: #444444; font-weight: 400; }
.navbar-belife .dropdown-item:hover { background-color: #faf7f2; color: var(--orange-bold); }
.navbar-belife .nav-link { font-size: 0.98rem; font-weight: 500; color: #444444; padding-inline: 0.25rem; }
.navbar-belife .nav-link:hover { color: var(--orange-bold); }
.navbar-belife .nav-link.active { color: var(--orange-bold); position: relative; }

/* Barre orange sous le lien simple actif */
.navbar-belife .nav-item:not(.dropdown) .nav-link.active::after {
  content: '';
  position: absolute;
  left: 20%; right: 20%;
  bottom: -0.35rem;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange-bold), var(--jaune-horizon));
}

/* Barre orange sous le dropdown actif - reset Bootstrap arrow */
.navbar-belife .nav-item.dropdown .nav-link.active::after {
  content: '';
  position: absolute;
  left: 20%; right: 20%;
  bottom: -0.35rem;
  height: 3px;
  width: auto;
  border: none;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange-bold), var(--jaune-horizon));
  vertical-align: unset;
  margin-left: 0;
}
.navbar-belife .icon-btn { border: none; background: transparent; font-size: 1rem; padding: 0.4rem 0.6rem; color: #555; }
.navbar-belife .icon-btn:hover { color: var(--orange-bold); }
.navbar-belife .btn-network {
  border-radius: 999px; border: none; font-weight: 600; font-size: 0.95rem;
  padding: 0.55rem 1.4rem;
  background: linear-gradient(90deg, var(--orange-bold), var(--jaune-horizon));
  color: #fff; display: inline-flex; align-items: center; gap: 0.4rem;
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}
.navbar-belife .btn-network:hover { opacity: 0.95; color: #fff; transform: translateY(-1px); }

/* HERO */
.hero-belife {
  position: relative;
  min-height: 320px;
  max-height: 420px;
  background-image:
    linear-gradient(90deg, rgba(225,143,1,0.94) 0%, rgba(208,100,61,0.9) 40%, rgba(208,100,61,0.7) 60%, rgba(208,100,61,0.15) 100%),
    url("../images/belife-logo-groupe-2.webp");
  background-position: center, center 14%;
  background-size: auto, cover;
  background-repeat: no-repeat, no-repeat;
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: center;
}
.hero-belife__agent { position: absolute; right: 8%; bottom: 0; top: 40px; display: flex; align-items: flex-end; pointer-events: none; }
.hero-belife__agent img { height: 100%; max-height: 420px; object-fit: contain; }
.hero-belife__content-wrapper { position: relative; z-index: 1; width: 100%; }
.hero-belife__content { height: 100%; display: flex; align-items: center; justify-content: center; padding-block: 2.25rem; }
.hero-belife__center { display: flex; flex-direction: column; align-items: center; text-align: center; }
.hero-belife__play {
  width: 90px; height: 90px; border-radius: 50%; border: none; background: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 18px 45px rgba(0,0,0,0.25);
  position: relative; overflow: visible;
}
.hero-belife__play::before {
  content: ''; position: absolute; inset: -10px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.55);
}
.hero-belife__play::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.55);
  animation: heroPulse 2.4s ease-out infinite; z-index: -1;
}
.hero-belife__play i { margin-left: 4px; font-size: 1.7rem; color: var(--orange-bold); }
.hero-belife__label { color: #fff; font-weight: 500; margin-top: 0.75rem; }

@keyframes heroPulse {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.55); }
  70% { box-shadow: 0 0 0 26px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

@media (max-width: 991.98px) {
  .navbar-belife .nav-link.active::after { display: none; }
  .hero-belife { max-height: none; min-height: 300px; }
  .hero-belife__agent { opacity: 0.35; right: -10%; }
  .hero-belife__content { justify-content: center; text-align: center; }
}

/* À propos */
.about-belife { background-color: #ffffff; }
.about-images { position: relative; max-width: 430px; margin-inline: auto; }
.about-img { border-radius: 24px; overflow: hidden; box-shadow: 0 18px 45px rgba(0,0,0,0.20); }
.about-img img { display: block; width: 100%; height: auto; }
.about-img-back { transform: translateX(0); }
.about-img-front { position: absolute; right: -12%; bottom: -14%; width: 78%; }
.about-content { max-width: 520px; margin-left: auto; }
.about-kicker { font-size: 0.85rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--jaune-horizon); font-weight: 600; margin-bottom: 0.9rem; }
.about-kicker span { margin-inline: 0.4rem; }
.about-title { font-size: 2.3rem; line-height: 1.15; font-weight: 700; color: var(--orange-bold); margin-bottom: 1rem; }
.about-lead { font-size: 1.02rem; font-weight: 500; color: var(--orange-bold); margin-bottom: 1rem; }
.about-text { font-size: 0.98rem; color: #666666; line-height: 1.7; }
.about-signature { margin-top: 1.8rem; }
.about-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, var(--orange-bold), var(--jaune-horizon));
  display: inline-flex; align-items: center; justify-content: center;
}
.about-avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; background-color: #ffffff; }
.about-sign-name { font-size: 1.1rem; font-weight: 600; }
.about-sign-role { font-size: 0.9rem; color: var(--orange-bold); }

@media (max-width: 991.98px) {
  .about-belife { padding-top: 3rem; padding-bottom: 3rem; }
  .about-images { margin-bottom: 3rem; }
  .about-img-front { right: -4%; bottom: -12%; width: 80%; }
  .about-content { margin-left: 0; }
  .about-title { font-size: 2rem; }
}

/* Services */
.services-belife {
  background: radial-gradient(circle at 50% -80px, #f9f3ed 0, #f3ebe4 48%, #f3ebe4 100%);
  padding-top: 4.5rem; padding-bottom: 5rem;
}
.services-kicker { font-size: 0.85rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--jaune-horizon); font-weight: 600; margin-bottom: 0.8rem; }
.services-kicker span { margin-inline: 0.4rem; }
.services-title { font-size: 2.3rem; line-height: 1.15; font-weight: 700; color: var(--orange-bold); }
.services-sidebar { background-color: #ffffff; border-radius: 20px; box-shadow: 0 18px 45px rgba(0,0,0,0.06); overflow: hidden; padding-left: 0; }
.services-tab {
  position: relative; display: block; width: 100%; text-align: left;
  border: none; background: transparent; padding: 1.15rem 1.8rem;
  font-size: 1rem; font-weight: 700; color: #222222;
  border-bottom: 1px solid #ece6dd; cursor: pointer;
}
.services-tab:last-child { border-bottom: none; }
.services-tab:hover { background: #faf7f2; }
.services-tab-active { background: transparent; color: #ffffff; position: relative; z-index: 1; }
.services-tab-active::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0;
  width: 14px; background: rgba(208,100,61,0.6);
}
.services-tab-active::after {
  content: ""; position: absolute; left: 12px; right: 12px; top: 6px; bottom: 6px;
  border-radius: 20px; background: var(--orange-bold); z-index: -1;
}
.services-panel {
  background-color: #ffffff; border-radius: 20px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.06);
  padding: 2.1rem 2.4rem;
  background-image: url("../images/services-map.webp");
  background-repeat: no-repeat; background-position: 82% 32%; background-size: 480px auto;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.services-panel:hover { transform: translateY(-2px); box-shadow: 0 24px 60px rgba(0,0,0,0.08); }
.services-panel-body { max-width: 460px; }
.services-icon {
  width: 56px; height: 56px; border-radius: 20px;
  display: inline-flex; align-items: center; justify-content: center;
  background-color: rgba(208,100,61,0.08); color: var(--jaune-horizon); font-size: 1.7rem;
}
.services-panel-title { font-size: 1.5rem; font-weight: 700; margin-top: 0.9rem; margin-bottom: 0.7rem; color: #5b1a1c; }
.services-panel-text { font-size: 0.98rem; color: #666666; line-height: 1.7; margin-bottom: 1.1rem; }
.services-panel-list { list-style: none; padding: 0; margin: 0; }
.services-panel-list li { font-size: 0.98rem; font-weight: 600; color: var(--jaune-horizon); display: flex; align-items: center; gap: 0.45rem; }
.services-panel-list li + li { margin-top: 0.35rem; }
.services-panel-list i { font-size: 1rem; color: var(--jaune-horizon); }
.services-photo { border-radius: 18px; padding: 0; border: 5px solid var(--orange-bold); background-color: #f89a4b; box-shadow: 0 16px 40px rgba(0,0,0,0.18); }
.services-photo img { display: block; width: 100%; height: auto; border-radius: 14px; object-fit: cover; }
.services-panel-fade { animation: servicesPanelFade 0.35s ease-out; }
@keyframes servicesPanelFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 991.98px) {
  .services-title { font-size: 2rem; }
  .services-panel { padding: 1.8rem 1.5rem; background-position: center top; background-size: 300px auto; }
}
@media (max-width: 575.98px) {
  .services-sidebar { max-width: 320px; margin-inline: auto; margin-bottom: 1.8rem; }
  .services-panel { border-radius: 24px; }
}

/* Marchés */
.markets-belife {
  background: radial-gradient(circle at 0 0, #fdf8f4 0, #f5efea 45%, #ffffff 100%);
  padding-top: 4.5rem; padding-bottom: 5rem;
}
.markets-kicker { font-size: 0.85rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--orange-bold); font-weight: 600; margin-bottom: 0.8rem; }
.markets-kicker span { margin-inline: 0.4rem; }
.markets-title { font-size: 2.3rem; line-height: 1.12; font-weight: 700; color: var(--orange-bold); margin-bottom: 1rem; }
.markets-text { font-size: 0.98rem; color: #666666; line-height: 1.7; margin-bottom: 1.3rem; }
.markets-detail { margin-top: 1.3rem; }
.markets-detail-title { font-size: 1.1rem; font-weight: 700; color: var(--rouge-heritage); margin-bottom: 0.6rem; }
.markets-countries { list-style: none; padding-left: 0; margin: 0.75rem 0 0; }
.markets-country-item { font-size: 0.95rem; margin-bottom: 0.3rem; color: #5b1a1c; cursor: pointer; transition: color 0.2s ease; }
.markets-country-item:hover { color: #d0643d; }
.markets-country-item.is-active { color: #d0643d; font-weight: 700; }
.markets-countries li { position: relative; padding-left: 1.4rem; font-size: 0.95rem; color: #555555; line-height: 1.6; }
.markets-countries li + li { margin-top: 0.3rem; }
.markets-countries li::before { content: ""; position: absolute; left: 0; top: 0.55em; width: 7px; height: 7px; border-radius: 50%; background-color: var(--orange-bold); }
.markets-detail p { font-size: 0.95rem; color: #555555; line-height: 1.7; margin-bottom: 0.75rem; }
.markets-detail strong { color: var(--orange-bold); }
.markets-list-item { display: flex; align-items: center; gap: 0.65rem; font-size: 0.95rem; font-weight: 600; color: #5b1a1c; }
.markets-list-icon { width: 38px; height: 38px; border-radius: 50%; background-color: var(--orange-bold); color: #ffffff; display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 10px 25px rgba(0,0,0,0.12); flex-shrink: 0; }
.markets-list-icon--outline { background-color: #ffffff; color: var(--orange-bold); border: 2px solid rgba(208,100,61,0.15); box-shadow: 0 8px 20px rgba(0,0,0,0.06); }
.markets-list-icon i { font-size: 0.9rem; }
.markets-map { width: 100%; height: 420px; }
.jvectormap-zoomin, .jvectormap-zoomout { background: #ffffff; color: var(--orange-bold); border-radius: 6px; border: 1px solid rgba(0,0,0,0.05); box-shadow: 0 4px 10px rgba(0,0,0,0.12); }
.markets-modal { border-radius: 18px; border: none; box-shadow: 0 24px 60px rgba(0,0,0,0.18); }
.markets-modal-logo { width: 54px; height: 54px; border-radius: 50%; background: #ffffff; display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 8px 22px rgba(0,0,0,0.12); }
.markets-modal-logo img { max-width: 42px; height: auto; }
.markets-modal-sub { font-size: 0.9rem; color: var(--orange-bold); font-weight: 500; }
.markets-modal-link { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.95rem; font-weight: 600; color: var(--orange-bold); text-decoration: none; }
.markets-modal-link:hover { text-decoration: underline; }
.markets-modal-link i { font-size: 0.85rem; }

@media (max-width: 991.98px) {
  .markets-title { font-size: 2rem; }
  .markets-map-wrapper { margin-top: 2rem; }
}

/* Valeurs */
.values-belife { background-color: #ffffff; }
.values-kicker { font-size: 0.85rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--orange-bold); font-weight: 600; margin-bottom: 0.8rem; }
.values-kicker span { margin-inline: 0.4rem; }
.values-title { font-size: 2.3rem; line-height: 1.15; font-weight: 700; color: var(--orange-bold); }
.values-row { margin-top: 3.8rem; }
.values-col { position: relative; }
.values-card {
  position: relative; background-color: #ffffff; border-radius: 28px;
  padding: 4.2rem 1.8rem 2.4rem; margin-top: 3.2rem;
  box-shadow: 0 18px 45px rgba(0,0,0,0.06); text-align: center;
  overflow: visible; display: flex; flex-direction: column;
  transition: transform 0.22s ease, box-shadow 0.22s ease; z-index: 1;
}
.values-col::after {
  content: ""; position: absolute; left: 24px; right: 24px; bottom: 0; height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange-bold), var(--jaune-horizon));
  opacity: 0; transform: translateY(6px); box-shadow: 0 6px 14px rgba(208,100,61,0.35);
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.values-col:hover .values-card { transform: translateY(-8px); box-shadow: 0 26px 60px rgba(0,0,0,0.14); }
.values-col:hover::after { opacity: 1; transform: translateY(0); }
.values-circle {
  position: absolute; top: -70px; left: 50%; transform: translateX(-50%);
  width: 140px; height: 140px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-bold), #f89a4b);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 22px 40px rgba(0,0,0,0.2); z-index: 1;
  transition: background 0.28s ease, background-color 0.28s ease, color 0.28s ease, transform 0.28s ease, top 0.28s ease, right 0.28s ease, left 0.28s ease, width 0.28s ease, height 0.28s ease, box-shadow 0.28s ease;
}
.values-letter { font-size: 3.4rem; font-weight: 700; color: #ffffff; transition: font-size 0.28s ease, color 0.28s ease; }
.values-card-badge {
  position: absolute; top: 22px; right: 26px; width: 52px; height: 52px;
  border-radius: 50%; background-color: #ffffff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 28px rgba(0,0,0,0.18); z-index: 2;
  transition: background 0.28s ease, background-color 0.28s ease, color 0.28s ease, transform 0.28s ease, top 0.28s ease, right 0.28s ease, left 0.28s ease, width 0.28s ease, height 0.28s ease, box-shadow 0.28s ease;
}
.values-card-badge i { font-size: 1.2rem; color: var(--orange-bold); transition: font-size 0.28s ease, color 0.28s ease; }
.values-card-body { margin-top: 1.6rem; flex: 1; display: flex; flex-direction: column; transition: transform 0.28s ease; }
.values-name-main { font-weight: 700; color: var(--orange-bold); font-size: 1.05rem; transition: color 0.28s ease; }
.values-name-alt { font-weight: 500; color: #555555; font-size: 0.95rem; transition: color 0.28s ease; }
.values-text { margin-top: 0.75rem; font-size: 0.95rem; color: #666666; line-height: 1.7; transition: color 0.28s ease; }

/* Hover valeurs */
.values-col:hover .values-card {
  background: radial-gradient(circle at 50% -40px, rgba(255,255,255,0.22) 0, transparent 55%), linear-gradient(135deg, #e89b58, #d0643d);
  color: #ffffff;
}
.values-col:hover .values-name-main, .values-col:hover .values-name-alt, .values-col:hover .values-text { color: #ffffff; }
.values-col:hover .values-card-badge {
  top: -80px; left: 50%; right: auto; transform: translateX(-50%);
  width: 150px; height: 150px; border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.85), rgba(255,255,255,0.03));
  box-shadow: 0 26px 50px rgba(0,0,0,0.28);
}
.values-col:hover .values-card-badge i { font-size: 2.4rem; color: var(--orange-bold); }
.values-col:hover .values-circle { top: 22px; right: 28px; left: auto; transform: none; width: 70px; height: 70px; background: #ffffff; box-shadow: 0 14px 30px rgba(0,0,0,0.25); }
.values-col:hover .values-letter { font-size: 2.1rem; color: var(--orange-bold); }
.values-col:hover .values-card-body { transform: translateY(6px); }

@media (max-width: 991.98px) { .values-title { font-size: 2rem; } }
@media (max-width: 575.98px) { .values-card { margin-top: 3.6rem; } }
@media (max-width: 767.98px) {
  .values-circle, .values-col:hover .values-card-badge { width: 120px; height: 120px; }
  .values-col:hover .values-card-badge { top: -70px; }
}

/* Stats */
.stats-belife {
  background-color: #e18f01f0; color: #ffffff;
  padding-top: 2.5rem; padding-bottom: 2.5rem;
  position: relative; overflow: hidden;
}
.stats-belife::before, .stats-belife::after {
  content: ""; position: absolute; inset: 0; opacity: 0.12;
  background-image: radial-gradient(circle at 0 0, #ffffff 0, transparent 55%);
  pointer-events: none;
}
.stats-belife::after { background-image: radial-gradient(circle at 100% 100%, #ffffff 0, transparent 55%); }
.stats-row { align-items: center; }
.stats-item { display: flex; flex-direction: column; align-items: center; gap: 0.45rem; font-size: 0.95rem; }
.stats-icon { font-size: 2.1rem; line-height: 1; }
.stats-sep { display: block; width: 34px; height: 3px; border-radius: 999px; background-color: #ffffff; opacity: 0.9; }
.stats-value { font-weight: 700; font-size: 1.55rem; }
.stats-label { font-size: 0.95rem; line-height: 1.5; opacity: 0.92; }

@media (max-width: 767.98px) {
  .stats-belife { padding-top: 2.2rem; padding-bottom: 2.2rem; }
  .stats-item { margin-bottom: 0.8rem; }
  .stats-value { font-size: 1.35rem; }
}

/* Contact */
.contact-belife { background-color: #ffffff; }
.contact-intro { max-width: 360px; }
.contact-kicker { font-size: 0.85rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--orange-bold); font-weight: 600; margin-bottom: 0.9rem; }
.contact-kicker span { margin-inline: 0.4rem; }
.contact-title { font-size: 2.4rem; line-height: 1.08; font-weight: 700; color: var(--orange-bold); margin-bottom: 1rem; }
.contact-text { font-size: 0.98rem; color: #666666; line-height: 1.7; }
.contact-form { max-width: none; width: 100%; margin-left: 0; }
.contact-input { width: 100%; border: none; border-radius: 12px; background-color: #e9dfd4; padding: 0.8rem 1.1rem; font-size: 0.96rem; color: var(--noir-de-chine); outline: none; box-shadow: 0 10px 24px rgba(0,0,0,0.04); }
.contact-textarea { resize: vertical; min-height: 170px; }
.contact-input::placeholder { color: #8d8277; opacity: 0.9; }
.contact-input:focus { box-shadow: 0 0 0 2px rgba(208,100,61,0.25), 0 10px 24px rgba(0,0,0,0.06); }
.btn-contact {
  border: none; border-radius: 18px; padding: 0.9rem 2.8rem;
  font-size: 1rem; font-weight: 600;
  background: linear-gradient(90deg, var(--orange-bold), var(--jaune-horizon));
  color: #ffffff; display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 30px rgba(208,100,61,0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}
.btn-contact:hover { opacity: 0.96; transform: translateY(-1px); color: #ffffff; box-shadow: 0 18px 40px rgba(208,100,61,0.42); }
.btn-contact:active { transform: translateY(0); box-shadow: 0 8px 18px rgba(208,100,61,0.3); }

@media (max-width: 991.98px) { .contact-title { font-size: 2.1rem; } }
@media (max-width: 575.98px) { .contact-title { font-size: 1.9rem; } }

/* Footer */
.belife-footer {
  background: radial-gradient(circle at 0 0, #7d221a 0, #5a130f 55%, #4a0f0c 100%);
  color: #fff; padding: 4rem 0 2.5rem; font-size: 0.95rem;
}
.belife-footer-inner { max-width: 1200px; }
.belife-footer-brand { margin-bottom: 1.5rem; }
.belife-footer-logo { max-width: 180px; height: auto; }
.belife-footer-contact { list-style: none; padding: 0; margin: 0; }
.belife-footer-contact li { display: flex; align-items: flex-start; gap: 0.6rem; margin-bottom: 0.7rem; font-size: 0.95rem; }
.belife-footer-contact i { margin-top: 0.15rem; font-size: 1rem; color: #ffb45c; }
.belife-footer-contact a, .belife-footer-contact span { color: #fff; text-decoration: none; }
.belife-footer-contact a:hover { text-decoration: underline; }
.belife-footer-title { font-size: 1.05rem; font-weight: 600; margin-bottom: 0.9rem; }
.belife-footer-links { list-style: none; padding: 0; margin: 0; }
.belife-footer-links li { margin-bottom: 0.4rem; }
.belife-footer-links a { color: rgba(255,255,255,0.9); text-decoration: none; font-size: 0.95rem; }
.belife-footer-links a:hover { color: #ffb45c; }
.belife-footer-bottom { margin-top: 3rem; text-align: center; }
.belife-footer-separator { height: 1px; background: linear-gradient(to right, transparent, rgba(255,255,255,0.35), transparent); margin-bottom: 1.2rem; }
.belife-footer-copy { margin: 0; font-size: 0.9rem; color: #ffb45c; }

@media (max-width: 991.98px) {
  .belife-footer { padding-top: 3rem; }
  .belife-footer-brand { margin-bottom: 1rem; }
  .belife-footer-bottom { margin-top: 2.5rem; }
}
@media (max-width: 575.98px) { .belife-footer-logo { max-width: 140px; } }

/* Modal groupe */
.group-modal { background-color: #ffffff; color: var(--noir-de-chine); }
.group-modal-header { padding: 1.2rem 1.8rem; }
.group-modal-logo { width: 54px; height: 54px; border-radius: 50%; background: #ffffff; display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 8px 22px rgba(0,0,0,0.12); }
.group-modal-logo img { max-width: 42px; height: auto; }
.group-modal-body { padding: 2rem 1.5rem 3rem; }
.group-country-list { list-style: none; padding: 0; margin: 0; text-align: center; }
.group-country-list li + li { margin-top: 1.3rem; }
.group-country-list a {
  display: inline-flex; flex-direction: column; min-width: 260px;
  padding: 0.9rem 1.4rem; border-radius: 999px; border: 1px solid #eee1d4;
  text-decoration: none; font-weight: 600; font-size: 1rem; color: var(--noir-de-chine);
  background-color: #fdf9f5;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}
.group-country-list a span { font-weight: 400; font-size: 0.85rem; color: #7a6a5c; margin-top: 0.15rem; }
.group-country-list a:hover {
  background: linear-gradient(90deg, var(--orange-bold), var(--jaune-horizon));
  color: #ffffff; border-color: transparent;
  box-shadow: 0 16px 40px rgba(208,100,61,0.35); transform: translateY(-2px);
}
.group-country-list a:hover span { color: #fff; }

/* Overlay recherche */
.search-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background-color: rgba(255,255,255,0.94);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center; padding: 3rem 1.5rem;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}
.search-overlay.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.search-overlay-inner { max-width: 720px; width: 100%; text-align: center; }
.search-overlay-kicker { font-size: 0.85rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--orange-bold); font-weight: 600; margin-bottom: 0.8rem; }
.search-overlay-title { font-size: 2.1rem; font-weight: 700; color: var(--noir-de-chine); margin-bottom: 0.5rem; }
.search-overlay-text { font-size: 0.98rem; color: #6b625a; margin-bottom: 1.8rem; }
.search-overlay-form { width: 100%; }
.search-overlay-row { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.search-overlay-input {
  flex: 1 1 260px; min-width: 0; max-width: 480px;
  border: none; border-radius: 999px; padding: 0.9rem 1.3rem;
  font-size: 0.98rem; background-color: #f0e7dd; color: var(--noir-de-chine);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06); outline: none;
}
.search-overlay-input::placeholder { color: #8d8277; }
.search-overlay-input:focus { box-shadow: 0 0 0 2px rgba(208,100,61,0.25), 0 12px 30px rgba(0,0,0,0.08); }
.search-overlay-submit {
  flex: 0 0 auto; border: none; border-radius: 999px; padding: 0.9rem 2.2rem;
  font-size: 0.98rem; font-weight: 600;
  background: linear-gradient(90deg, var(--orange-bold), var(--jaune-horizon));
  color: #ffffff; box-shadow: 0 14px 32px rgba(208,100,61,0.35);
  display: inline-flex; align-items: center; justify-content: center; cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}
.search-overlay-submit:hover { opacity: 0.97; transform: translateY(-1px); box-shadow: 0 18px 40px rgba(208,100,61,0.42); }
.search-overlay-submit:active { transform: translateY(0); box-shadow: 0 10px 24px rgba(208,100,61,0.3); }
.search-overlay-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  border: none; background: rgba(255,255,255,0.7); border-radius: 999px;
  width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.16); cursor: pointer;
}
.search-overlay-close i { font-size: 1.2rem; color: var(--noir-de-chine); }
.search-overlay-close:hover { background: #ffffff; }
body.is-search-open { overflow: hidden; }

@media (max-width: 575.98px) {
  .search-overlay { padding: 2rem 1.25rem; }
  .search-overlay-title { font-size: 1.7rem; }
  .search-overlay-row { flex-direction: column; align-items: stretch; }
  .search-overlay-submit { width: 100%; }
  .search-overlay-close { top: 1rem; right: 1rem; }
}

/* Animations reveal */
.reveal-on-scroll { opacity: 0; transform: translateY(32px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; will-change: opacity, transform; }
.reveal-on-scroll.reveal-up { transform: translateY(32px); }
.reveal-on-scroll.reveal-left { transform: translateX(-32px); }
.reveal-on-scroll.reveal-right { transform: translateX(32px); }
.reveal-on-scroll.is-visible { opacity: 1; transform: none; }
.values-row .values-card.reveal-on-scroll { transition-duration: 0.7s; }
.values-row .values-card:nth-child(2) { transition-delay: 0.08s; }
.values-row .values-card:nth-child(3) { transition-delay: 0.16s; }
.values-row .values-card:nth-child(4) { transition-delay: 0.24s; }
.values-row .values-card:nth-child(5) { transition-delay: 0.32s; }
.stats-row .stats-item.reveal-on-scroll { transition-duration: 0.6s; }
.stats-row .stats-item:nth-child(2) { transition-delay: 0.06s; }
.stats-row .stats-item:nth-child(3) { transition-delay: 0.12s; }
.stats-row .stats-item:nth-child(4) { transition-delay: 0.18s; }

/* =====================
   Pages dynamiques
   ===================== */

/* Hero bannière */
.page-hero {
  min-height: 280px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  position: relative;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.6) 0%, rgba(0,0,0,.1) 100%);
}
.page-hero__content {
  position: relative;
  z-index: 1;
  padding: 2rem 0;
  color: #fff;
}
.page-hero__icon { font-size: 2rem; margin-bottom: .5rem; color: var(--orange-bold); }
.page-hero__title { font-size: 2.5rem; font-weight: 700; margin: 0; }

/* Header sans image */
.page-header {
  background: linear-gradient(135deg, #f8f4ef 0%, #ede8e2 100%);
  padding: 3rem 0 2rem;
  border-bottom: 3px solid var(--orange-bold);
}
.page-header__icon { font-size: 2rem; color: var(--orange-bold); margin-bottom: .75rem; }
.page-header__title { font-size: 2.2rem; font-weight: 700; color: var(--dark); margin-bottom: .5rem; }
.breadcrumb { background: none; padding: 0; margin: 0; }
.breadcrumb-item a { color: var(--orange-bold); text-decoration: none; }
.breadcrumb-item.active { color: #888; }
.breadcrumb-item + .breadcrumb-item::before { color: #aaa; }

/* Corps de page */
.page-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
}
.page-body h2 { font-size: 1.7rem; font-weight: 700; color: var(--dark); margin: 2rem 0 1rem; }
.page-body h3 { font-size: 1.3rem; font-weight: 600; color: var(--orange-bold); margin: 1.5rem 0 .75rem; }
.page-body h4 { font-size: 1.1rem; font-weight: 600; color: var(--dark); margin: 1.25rem 0 .5rem; }
.page-body p { margin-bottom: 1.25rem; }
.page-body ul, .page-body ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.page-body li { margin-bottom: .4rem; }
.page-body blockquote {
  border-left: 4px solid var(--orange-bold);
  padding: 1rem 1.5rem;
  background: #fdf7f3;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #555;
  margin: 1.5rem 0;
}
.page-body a { color: var(--orange-bold); }
.page-body img { max-width: 100%; border-radius: 8px; margin: 1rem 0; }
.page-body table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.page-body table th { background: var(--orange-bold); color: #fff; padding: .75rem 1rem; text-align: left; }
.page-body table td { padding: .65rem 1rem; border-bottom: 1px solid #eee; }
.page-body table tr:hover td { background: #fdf7f3; }

/* Sidebar */
.sidebar-widget { background: #f8f4ef; border-radius: 12px; padding: 1.5rem; margin-bottom: 1.5rem; }
.sidebar-title { font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--dark); margin-bottom: 1rem; padding-bottom: .5rem; border-bottom: 2px solid var(--orange-bold); }
.sidebar-nav { list-style: none; padding: 0; margin: 0; }
.sidebar-nav li { border-bottom: 1px solid #e8e2da; }
.sidebar-nav li:last-child { border-bottom: none; }
.sidebar-nav a { display: block; padding: .6rem .25rem; color: #555; text-decoration: none; font-size: .95rem; transition: color .2s; }
.sidebar-nav a:hover, .sidebar-nav li.active a { color: var(--orange-bold); font-weight: 600; }

/* =====================================================
   Pages dynamiques — Belife Groupe 2026
   Charte : orange #d0643d / jaune #d4a456 / rouge #5b1a1c
   ===================================================== */

/* ── Hero bannière avec image ── */
.page-hero {
  min-height: 340px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(91,26,28,.55) 0%, rgba(208,100,61,.35) 100%);
  z-index: 1;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,20,19,.7) 0%, transparent 60%);
  z-index: 1;
}
.page-hero__content {
  position: relative;
  z-index: 2;
  padding: 2.5rem 0 2rem;
  color: #fff;
}
.page-hero__icon {
  font-size: 2.2rem;
  margin-bottom: .6rem;
  color: var(--jaune-horizon);
  display: block;
}
.page-hero__title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  margin: 0;
  line-height: 1.15;
  text-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.page-hero__breadcrumb {
  margin-top: .75rem;
  opacity: .85;
}
.page-hero__breadcrumb a { color: var(--jaune-horizon); text-decoration: none; }
.page-hero__breadcrumb .sep { margin: 0 .5rem; opacity: .6; }

/* ── Header sans image ── */
.page-header {
  position: relative;
  overflow: hidden;
  padding: 4rem 0 3rem;
  background: linear-gradient(135deg, #f8f4ef 0%, #ede8e2 60%, #e3dfd7 100%);
}
.page-header::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(208,100,61,.12) 0%, transparent 70%);
  pointer-events: none;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange-bold), var(--jaune-horizon));
}
.page-header__inner {
  position: relative;
  z-index: 1;
}
.page-header__kicker {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange-bold);
  margin-bottom: .75rem;
}
.page-header__icon {
  font-size: 2.5rem;
  color: var(--orange-bold);
  margin-bottom: .75rem;
  display: inline-block;
  font-style: normal;
}
.page-header__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--noir-de-chine);
  margin-bottom: .75rem;
  line-height: 1.15;
}

.page-header__title span { color: var(--orange-bold); }
.page-header__breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .9rem;
  color: #888;
  flex-wrap: wrap;
}
.page-header__breadcrumb a { color: var(--orange-bold); text-decoration: none; font-weight: 500; }
.page-header__breadcrumb a:hover { text-decoration: underline; }
.page-header__breadcrumb .sep { color: #ccc; }

/* Déco SVG ondulée sous le header */
.page-header-wave {
  display: block;
  width: 100%;
  height: 48px;
  margin-top: -1px;
  background: #fff;
}

/* ── Layout principal ── */
.page-content { background: #fff; }

.page-body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #3a3a38;
}

/* Titres */
.page-body h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 700;
  color: var(--noir-de-chine);
  margin: 2.5rem 0 1rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--gris-clair);
  position: relative;
}
.page-body h2::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 60px; height: 2px;
  background: var(--orange-bold);
}
.page-body h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--orange-bold);
  margin: 2rem 0 .75rem;
}
.page-body h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--noir-de-chine);
  margin: 1.5rem 0 .5rem;
}
.page-body p { margin-bottom: 1.25rem; }
.page-body strong { color: var(--noir-de-chine); font-weight: 600; }

/* Listes */
.page-body ul, .page-body ol {
  padding-left: 0;
  margin-bottom: 1.5rem;
  list-style: none;
}
.page-body ul li {
  padding: .35rem 0 .35rem 1.75rem;
  position: relative;
  border-bottom: 1px solid #f5f3f0;
}
.page-body ul li::before {
  content: '';
  position: absolute;
  left: 0; top: .75rem;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange-bold);
}
.page-body ol { counter-reset: ol-counter; }
.page-body ol li {
  padding: .4rem 0 .4rem 2rem;
  position: relative;
  counter-increment: ol-counter;
  border-bottom: 1px solid #f5f3f0;
}
.page-body ol li::before {
  content: counter(ol-counter);
  position: absolute;
  left: 0; top: .35rem;
  width: 1.4rem; height: 1.4rem;
  border-radius: 50%;
  background: var(--orange-bold);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Blockquote */
.page-body blockquote {
  border-left: 4px solid var(--orange-bold);
  padding: 1.25rem 1.75rem;
  background: linear-gradient(135deg, #fdf7f3, #faf4ee);
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: #555;
  margin: 2rem 0;
  position: relative;
}
.page-body blockquote::before {
  content: '\201C';
  position: absolute;
  top: -.5rem; left: 1rem;
  font-size: 4rem;
  color: var(--orange-bold);
  opacity: .2;
  line-height: 1;
  font-style: normal;
}

/* Liens */
.page-body a { color: var(--orange-bold); text-decoration: none; border-bottom: 1px solid rgba(208,100,61,.3); transition: border-color .2s; }
.page-body a:hover { border-color: var(--orange-bold); }

/* Images */
.page-body img {
  max-width: 100%;
  border-radius: 12px;
  margin: 1.5rem 0;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
}

/* Tables */
.page-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.page-body table thead tr { background: linear-gradient(90deg, var(--orange-bold), var(--jaune-horizon)); }
.page-body table th { color: #fff; padding: .9rem 1.25rem; text-align: left; font-weight: 600; font-size: .95rem; }
.page-body table td { padding: .75rem 1.25rem; border-bottom: 1px solid #f0ece6; color: #444; }
.page-body table tr:last-child td { border-bottom: none; }
.page-body table tbody tr:hover td { background: #fdf7f3; }

/* ── Sidebar ── */
.page-sidebar { position: sticky; top: 100px; }

.sidebar-widget {
  background: linear-gradient(135deg, #f8f4ef, #f2ece4);
  border-radius: 16px;
  padding: 1.75rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(208,100,61,.1);
}
.sidebar-title {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--orange-bold);
  margin-bottom: 1rem;
  padding-bottom: .6rem;
  border-bottom: 2px solid rgba(208,100,61,.2);
}
.sidebar-nav { list-style: none; padding: 0; margin: 0; }
.sidebar-nav li { border-bottom: 1px solid rgba(208,100,61,.08); }
.sidebar-nav li:last-child { border-bottom: none; }
.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .65rem .25rem;
  color: #555;
  text-decoration: none;
  font-size: .95rem;
  transition: color .2s, padding-left .2s;
}
.sidebar-nav a::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gris-clair);
  flex-shrink: 0;
  transition: background .2s;
}
.sidebar-nav a:hover, .sidebar-nav li.active a {
  color: var(--orange-bold);
  padding-left: .35rem;
}
.sidebar-nav a:hover::before, .sidebar-nav li.active a::before {
  background: var(--orange-bold);
}
.sidebar-nav li.active a { font-weight: 600; }

/* Bloc contact sidebar */
.sidebar-contact {
  background: linear-gradient(135deg, var(--orange-bold), var(--rouge-heritage));
  border-radius: 16px;
  padding: 1.75rem;
  color: #fff;
  text-align: center;
}
.sidebar-contact h5 { font-weight: 700; margin-bottom: .5rem; }
.sidebar-contact p { font-size: .9rem; opacity: .9; margin-bottom: 1rem; }
.sidebar-contact .btn-sidebar {
  display: inline-block;
  background: #fff;
  color: var(--orange-bold);
  padding: .6rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
  transition: transform .2s;
}
.sidebar-contact .btn-sidebar:hover { transform: translateY(-2px); }

/* ── Illustrations décoratives ── */
.page-deco-shape {
  position: absolute;
  pointer-events: none;
  opacity: .03;
}

/* Pagination / CTA bas de page */
.page-cta {
  margin-top: 3rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, #f8f4ef, #ede8e2);
  border-radius: 20px;
  border: 1px solid rgba(208,100,61,.1);
  text-align: center;
}
.page-cta h4 { font-weight: 700; color: var(--noir-de-chine); margin-bottom: .5rem; }
.page-cta p { color: #666; margin-bottom: 1.25rem; }
.page-cta .btn-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: linear-gradient(90deg, var(--orange-bold), var(--jaune-horizon));
  color: #fff;
  padding: .75rem 2rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(208,100,61,.3);
}
.page-cta .btn-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(208,100,61,.4); }

.page-header__icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-bold), var(--jaune-horizon));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(208,100,61,.3);
}
.page-header__icon-wrap .page-header__icon {
  font-size: 2rem;
  color: #fff;
  margin: 0;
}

/* ============================================
   GALERIE PHOTOS
   ============================================ */
.gallery-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
  transition: transform .3s, box-shadow .3s;
}
.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  color: inherit;
}
.gallery-card__img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--gris-clair);
}
.gallery-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.gallery-card:hover .gallery-card__img img { transform: scale(1.06); }
.gallery-card__placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; color: #ccc;
}
.gallery-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,20,19,.55) 0%, transparent 60%);
  display: flex; align-items: flex-end; padding: 1rem;
}
.gallery-card__count {
  color: #fff; font-size: .85rem; font-weight: 600;
  background: rgba(0,0,0,.35); padding: .25rem .75rem; border-radius: 20px;
}
.gallery-card__body { padding: 1.25rem; }
.gallery-card__date { font-size: .8rem; color: var(--orange-bold); margin-bottom: .35rem; }
.gallery-card__title { font-size: 1.05rem; font-weight: 700; margin-bottom: .35rem; color: var(--noir-de-chine); }
.gallery-card__location { font-size: .82rem; color: #888; margin-bottom: .5rem; }
.gallery-card__desc { font-size: .88rem; color: #666; margin: 0; }

/* Événement détail */
.gallery-event-info {
  display: flex; flex-wrap: wrap; gap: 1.5rem;
  padding: 1rem 1.5rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  font-size: .9rem; color: #555;
}
.gallery-event-info span { display: flex; align-items: center; gap: .5rem; }
.gallery-event-info i { color: var(--orange-bold); }
.gallery-description { font-size: 1.05rem; color: #555; max-width: 720px; }

/* Grille photos */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
}
.gallery-grid__item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  background: var(--gris-clair);
}
.gallery-grid__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .35s;
}
.gallery-grid__item:hover img { transform: scale(1.08); }
.gallery-grid__caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.6));
  color: #fff; font-size: .78rem; padding: .5rem .75rem;
  opacity: 0; transition: opacity .3s;
}
.gallery-grid__item:hover .gallery-grid__caption { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.92);
  display: none; align-items: center; justify-content: center;
}
.lightbox.is-open { display: flex; }
.lightbox__content { max-width: 90vw; max-height: 90vh; }
.lightbox__content img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 4px; }
.lightbox__close, .lightbox__prev, .lightbox__next {
  position: absolute;
  background: rgba(255,255,255,.15);
  border: none; color: #fff;
  width: 48px; height: 48px; border-radius: 50%;
  font-size: 1.2rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.lightbox__close:hover, .lightbox__prev:hover, .lightbox__next:hover { background: var(--orange-bold); }
.lightbox__close { top: 1.5rem; right: 1.5rem; }
.lightbox__prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 1.5rem; top: 50%; transform: translateY(-50%); }

.btn-back {
  display: inline-flex; align-items: center; gap: .5rem;
  color: var(--orange-bold); font-weight: 600; text-decoration: none;
  border: 2px solid var(--orange-bold); padding: .5rem 1.25rem;
  border-radius: 30px; transition: all .3s;
}
.btn-back:hover { background: var(--orange-bold); color: #fff; }

/* ============================================
   ARTICLES & ACTUALITÉS
   ============================================ */

/* Filtres */
.articles-filters {
  display: flex; flex-wrap: wrap; gap: .75rem;
}
.articles-filter {
  display: inline-block;
  padding: .45rem 1.25rem;
  border-radius: 30px;
  border: 2px solid var(--gris-clair);
  color: #666; font-size: .88rem; font-weight: 600;
  text-decoration: none; transition: all .25s;
}
.articles-filter:hover, .articles-filter.active {
  background: var(--orange-bold);
  border-color: var(--orange-bold);
  color: #fff;
}

/* Badge catégorie */
.article-badge {
  display: inline-block;
  padding: .2rem .75rem;
  border-radius: 20px;
  font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .03em;
}
.article-badge--actualite  { background: #e8f4fd; color: #1a7abf; }
.article-badge--evenement  { background: #fff3e0; color: #e07800; }
.article-badge--communique { background: #f3e8fd; color: #7c3aed; }
.article-badge--rse        { background: #e8f5e9; color: #2e7d32; }

/* Article à la une */
.article-featured { border-radius: 14px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,.09); background: #fff; }
.article-featured__link { display: flex; flex-direction: row; text-decoration: none; color: inherit; }
@media (max-width: 767px) { .article-featured__link { flex-direction: column; } }
.article-featured__img {
  position: relative; flex: 0 0 45%;
  min-height: 280px; overflow: hidden; background: var(--gris-clair);
}
.article-featured__img img { width: 100%; height: 100%; object-fit: cover; }
.article-featured__img .article-badge { position: absolute; top: 1rem; left: 1rem; }
.article-featured__body { padding: 2rem; display: flex; flex-direction: column; justify-content: center; }
.article-featured__title { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 700; color: var(--noir-de-chine); margin: .5rem 0 1rem; }
.article-featured__excerpt { color: #666; line-height: 1.7; margin-bottom: 1.5rem; }

/* Card article */
.article-card {
  display: block; text-decoration: none; color: inherit;
  background: #fff; border-radius: 12px; overflow: hidden;
  box-shadow: 0 2px 14px rgba(0,0,0,.07);
  transition: transform .3s, box-shadow .3s;
  height: 100%;
}
.article-card:hover { transform: translateY(-5px); box-shadow: 0 8px 28px rgba(0,0,0,.11); color: inherit; }
.article-card__img {
  position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--gris-clair);
}
.article-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.article-card:hover .article-card__img img { transform: scale(1.06); }
.article-card__img .article-badge { position: absolute; top: .75rem; left: .75rem; }
.article-card__placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; color: #ccc;
}
.article-card__body { padding: 1.25rem; }
.article-meta { display: flex; flex-wrap: wrap; gap: .75rem; font-size: .78rem; color: #999; margin-bottom: .6rem; }
.article-meta i { color: var(--orange-bold); }
.article-card__title { font-size: 1rem; font-weight: 700; color: var(--noir-de-chine); margin-bottom: .5rem; line-height: 1.4; }
.article-card__excerpt { font-size: .88rem; color: #666; margin-bottom: .75rem; line-height: 1.6; }
.article-readmore { font-size: .85rem; font-weight: 700; color: var(--orange-bold); display: flex; align-items: center; gap: .4rem; }
.article-readmore i { transition: transform .25s; }
.article-card:hover .article-readmore i, .article-featured__link:hover .article-readmore i { transform: translateX(4px); }

/* Article détail */
.article-cover { border-radius: 12px; overflow: hidden; max-height: 480px; }
.article-cover img { width: 100%; height: 100%; object-fit: cover; }
.article-detail-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; font-size: .88rem; color: #777; }
.article-detail-meta i { color: var(--orange-bold); }

/* Partage */
.article-share {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.5rem;
  background: #f8f4ef; border-radius: 10px;
  font-size: .9rem; font-weight: 600; color: #555;
}
.article-share a {
  width: 38px; height: 38px; border-radius: 50%;
  background: #fff; color: var(--noir-de-chine);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  transition: all .25s;
}
.article-share a:hover { background: var(--orange-bold); color: #fff; }

/* Articles liés */
.related-title {
  font-size: 1.2rem; font-weight: 700; color: var(--noir-de-chine);
  padding-bottom: .75rem;
  border-bottom: 3px solid var(--orange-bold);
  display: inline-block;
}

/* Footer social */
.belife-footer-social { display: flex; gap: .75rem; }
.belife-footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; text-decoration: none; transition: background .25s;
}
.belife-footer-social a:hover { background: var(--orange-bold); }

/* ============================================
   RECHERCHE
   ============================================ */
.search-form__inner {
  display: flex; align-items: center;
  background: #fff;
  border: 2px solid var(--gris-clair);
  border-radius: 50px;
  padding: .4rem .4rem .4rem 1.25rem;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  transition: border-color .25s;
}
.search-form__inner:focus-within { border-color: var(--orange-bold); }
.search-form__icon { color: var(--orange-bold); font-size: 1.1rem; margin-right: .75rem; flex-shrink: 0; }
.search-form__input {
  flex: 1; border: none; outline: none;
  font-size: 1.05rem; background: transparent;
  font-family: inherit; color: var(--noir-de-chine);
}
.search-form__clear {
  color: #aaa; font-size: 1rem; padding: .25rem .75rem;
  text-decoration: none; transition: color .2s;
}
.search-form__clear:hover { color: var(--rouge-heritage); }
.search-form__btn {
  background: linear-gradient(135deg, var(--orange-bold), var(--jaune-horizon));
  color: #fff; border: none; border-radius: 40px;
  padding: .6rem 1.5rem; font-weight: 700; font-size: .9rem;
  cursor: pointer; transition: opacity .2s; white-space: nowrap;
}
.search-form__btn:hover { opacity: .88; }

.search-count { color: #777; font-size: .95rem; }
.search-count strong { color: var(--orange-bold); font-size: 1.1rem; }

.search-results { display: flex; flex-direction: column; gap: 1rem; }

.search-result-item {
  display: flex; align-items: flex-start; gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: #fff; border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  text-decoration: none; color: inherit;
  transition: transform .25s, box-shadow .25s;
  border-left: 3px solid transparent;
}
.search-result-item:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
  border-left-color: var(--orange-bold);
  color: inherit;
}
.search-result-item__icon {
  width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--orange-bold), var(--jaune-horizon));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.search-result-item__body { flex: 1; min-width: 0; }
.search-result-item__meta { display: flex; align-items: center; gap: .75rem; margin-bottom: .4rem; }
.search-result-item__date { font-size: .78rem; color: #999; }
.search-result-item__date i { color: var(--orange-bold); }
.search-result-item__title { font-size: 1rem; font-weight: 700; color: var(--noir-de-chine); margin-bottom: .35rem; }
.search-result-item__title mark { background: #fff3cd; color: var(--noir-de-chine); border-radius: 2px; padding: 0 2px; }
.search-result-item__excerpt { font-size: .88rem; color: #666; margin: 0; line-height: 1.6; }
.search-result-item__excerpt mark { background: #fff3cd; color: var(--noir-de-chine); }
.search-result-item__arrow { color: #ccc; font-size: .9rem; transition: color .25s; align-self: center; }
.search-result-item:hover .search-result-item__arrow { color: var(--orange-bold); }

.search-badge {
  display: inline-block; padding: .15rem .65rem;
  border-radius: 20px; font-size: .72rem; font-weight: 700; text-transform: uppercase;
}
.search-badge--primary { background: #e8f0fe; color: #1a56db; }
.search-badge--info    { background: #e8f4fd; color: #1a7abf; }
.search-badge--warning { background: #fff3e0; color: #e07800; }
.search-badge--purple  { background: #f3e8fd; color: #7c3aed; }
.search-badge--green   { background: #e8f5e9; color: #2e7d32; }
.search-badge--orange  { background: #fff0e8; color: var(--orange-bold); }

.search-empty {
  text-align: center; padding: 3rem 1rem;
  color: #999;
}
.search-empty i { font-size: 3rem; color: var(--gris-clair); margin-bottom: 1rem; display: block; }
.search-empty h3 { color: var(--noir-de-chine); margin-bottom: .5rem; }

.search-suggestions__title { font-size: 1rem; font-weight: 700; color: #888; margin-bottom: 1rem; }
.search-suggestions__tags { display: flex; flex-wrap: wrap; gap: .75rem; }
.search-tag {
  display: inline-block; padding: .4rem 1.1rem;
  border-radius: 30px; border: 2px solid var(--gris-clair);
  color: #666; font-size: .88rem; text-decoration: none;
  transition: all .25s;
}
.search-tag:hover { background: var(--orange-bold); border-color: var(--orange-bold); color: #fff; }

/* Bouton Contact navbar */
.btn-contact-nav {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--orange-bold);
  color: #fff !important;
  border: none;
  border-radius: 6px;
  padding: .45rem 1.1rem;
  font-size: .85rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
.btn-contact-nav:hover {
  background: var(--rouge-heritage);
  transform: translateY(-1px);
  color: #fff !important;
}

/* Select contact form */
select.contact-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}

/* ===== COOKIE CONSENT ===== */
.cookie-banner{position:fixed;bottom:0;left:0;right:0;background:#141413;border-top:3px solid #d0643d;z-index:9999;font-family:'Kind Sans',sans-serif;box-shadow:0 -4px 24px rgba(0,0,0,.18);animation:slideUp .35s ease}
@keyframes slideUp{from{transform:translateY(100%);opacity:0}to{transform:translateY(0);opacity:1}}
.cookie-banner__inner{max-width:1200px;margin:0 auto;padding:1.1rem 1.5rem;display:flex;align-items:center;gap:1.5rem;flex-wrap:wrap}
.cookie-banner__text{flex:1;color:#e3dfd7;font-size:.92rem;line-height:1.5}
.cookie-banner__text strong{color:#d4a456;font-size:1rem}
.cookie-banner__text p{margin:.3rem 0 0}
.cookie-banner__text a{color:#d0643d;text-decoration:underline}
.cookie-banner__actions{display:flex;gap:.6rem;flex-wrap:wrap;align-items:center}
.cookie-btn{padding:.5rem 1.2rem;border-radius:4px;font-family:'Kind Sans',sans-serif;font-size:.88rem;cursor:pointer;border:none;transition:all .2s;white-space:nowrap}
.cookie-btn--primary{background:#d0643d;color:#fff}
.cookie-btn--primary:hover{background:#b8512d}
.cookie-btn--outline{background:transparent;color:#e3dfd7;border:1px solid #e3dfd7}
.cookie-btn--outline:hover{background:rgba(255,255,255,.08)}
.cookie-panel{border-top:1px solid rgba(255,255,255,.1)}
.cookie-panel__inner{max-width:1200px;margin:0 auto;padding:1.2rem 1.5rem}
.cookie-panel__inner h3{color:#d4a456;font-size:1rem;margin:0 0 1rem}
.cookie-toggle-row{display:flex;justify-content:space-between;align-items:center;padding:.7rem 0;border-bottom:1px solid rgba(255,255,255,.07);gap:1rem}
.cookie-toggle-row>div{flex:1}
.cookie-toggle-row strong{color:#e3dfd7;font-size:.9rem}
.cookie-toggle-row p{color:#a09c94;font-size:.8rem;margin:.2rem 0 0}
.toggle{position:relative;display:inline-block;width:44px;height:24px;flex-shrink:0}
.toggle input{opacity:0;width:0;height:0}
.toggle__slider{position:absolute;inset:0;background:#3a3a38;border-radius:24px;cursor:pointer;transition:.3s}
.toggle__slider:before{content:'';position:absolute;width:18px;height:18px;left:3px;bottom:3px;background:#fff;border-radius:50%;transition:.3s}
.toggle input:checked+.toggle__slider{background:#d0643d}
.toggle input:checked+.toggle__slider:before{transform:translateX(20px)}
.toggle--disabled{opacity:.5;cursor:not-allowed}
.cookie-panel__footer{margin-top:1rem;text-align:right}
@media(max-width:640px){.cookie-banner__inner{flex-direction:column;align-items:flex-start}.cookie-banner__actions{width:100%;justify-content:flex-end}}

/* ===== BOUTON RETOUR EN HAUT ===== */
#back-to-top {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: #d0643d;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(208,100,61,.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity .3s, visibility .3s, transform .3s, background .2s;
    z-index: 9998;
}
#back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
#back-to-top:hover {
    background: #b8512d;
    transform: translateY(-3px);
}
#back-to-top svg {
    width: 20px;
    height: 20px;
    pointer-events: none;
}

/* ===== LAZY LOADING ===== */
img[data-src] {
    opacity: 0;
    transition: opacity .5s ease;
}
img.lazy-loaded {
    opacity: 1;
}
img.lazy-error {
    opacity: .3;
    filter: grayscale(1);
}

/* ===== PAGINATION ===== */
.pagination {
    display: flex;
    gap: .4rem;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}
.pagination .page-item .page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 .75rem;
    border-radius: 6px;
    border: 1.5px solid #e3dfd7;
    background: #fff;
    color: #141413;
    font-family: 'Kind Sans', sans-serif;
    font-size: .9rem;
    text-decoration: none;
    transition: all .2s;
}
.pagination .page-item .page-link:hover {
    background: #f5ede7;
    border-color: #d0643d;
    color: #d0643d;
}
.pagination .page-item.active .page-link {
    background: #d0643d;
    border-color: #d0643d;
    color: #fff;
    font-weight: 600;
}
.pagination .page-item.disabled .page-link {
    opacity: .4;
    cursor: not-allowed;
    pointer-events: none;
}

/* ===== NEWSLETTER ===== */
.newsletter-section {
    background: linear-gradient(135deg, #5b1a1c 0%, #141413 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}
.newsletter-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, #d4a45615 1px, transparent 1px);
    background-size: 28px 28px;
}
.newsletter-section__inner {
    position: relative;
    z-index: 1;
    max-width: 580px;
    margin: 0 auto;
    text-align: center;
    padding: 0 1rem;
}
.newsletter-section__icon {
    font-size: 2.5rem;
    color: #d4a456;
    margin-bottom: 1rem;
}
.newsletter-section__title {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: .5rem;
}
.newsletter-section__desc {
    color: #c8c3bb;
    margin-bottom: 1.8rem;
    line-height: 1.6;
}
.newsletter-form__inner {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
}
.newsletter-input {
    flex: 1;
    min-width: 200px;
    padding: .75rem 1rem;
    border: 1.5px solid rgba(255,255,255,.2);
    border-radius: 6px;
    background: rgba(255,255,255,.08);
    color: #fff;
    font-family: 'Kind Sans', sans-serif;
    font-size: .95rem;
    outline: none;
    transition: border .2s;
}
.newsletter-input::placeholder { color: rgba(255,255,255,.45); }
.newsletter-input:focus { border-color: #d4a456; }
.newsletter-input.is-invalid { border-color: #e05c5c; }
.newsletter-btn {
    padding: .75rem 1.5rem;
    background: #d0643d;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-family: 'Kind Sans', sans-serif;
    font-size: .95rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    transition: background .2s;
    white-space: nowrap;
}
.newsletter-btn:hover { background: #b8512d; }
.newsletter-error {
    color: #f87171;
    font-size: .85rem;
    margin-top: .4rem;
    text-align: left;
}
.newsletter-success {
    background: rgba(255,255,255,.1);
    border: 1.5px solid #d4a456;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    color: #d4a456;
    font-size: .95rem;
    display: flex;
    align-items: center;
    gap: .6rem;
}

/* Footer newsletter widget */
.footer-newsletter .newsletter-input {
    background: rgba(255,255,255,.06);
    border-color: rgba(255,255,255,.15);
    font-size: .88rem;
    padding: .6rem .9rem;
}
.footer-newsletter .newsletter-btn {
    font-size: .88rem;
    padding: .6rem 1rem;
}
.footer-newsletter .newsletter-success {
    font-size: .85rem;
    padding: .7rem 1rem;
}

/* ===== ARTICLE SHARE COPY BUTTON ===== */
.article-share-copy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: var(--noir-de-chine);
    cursor: pointer;
    transition: all .25s;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.article-share-copy:hover {
    background: var(--orange-bold);
    color: #fff;
}
}

/* ===== SEARCH SUGGESTIONS ===== */
.search-suggestions {
    margin-top: .75rem;
    background: #fff;
    border: 1px solid #e3dfd7;
    border-radius: 10px;
    overflow: hidden;
    display: none;
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
}
.search-suggestions.visible { display: block; }
.search-suggestion-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .75rem 1rem;
    color: #141413;
    text-decoration: none;
    transition: background .2s;
    border-bottom: 1px solid #f0ece5;
    cursor: pointer;
}
.search-suggestion-item:last-child { border-bottom: none; }
.search-suggestion-item:hover { background: #f5ede7; color: #d0643d; }
.search-suggestion-item i { color: #d4a456; width: 18px; text-align: center; flex-shrink: 0; }
.search-suggestion-item__title { flex: 1; font-size: .9rem; font-weight: 500; }
.search-suggestion-item__type {
    font-size: .72rem;
    color: #a09c94;
    background: #f5f3ef;
    padding: .15rem .5rem;
    border-radius: 10px;
    white-space: nowrap;
}
.search-suggestion-loading {
    padding: .75rem 1rem;
    color: #a09c94;
    font-size: .85rem;
    text-align: center;
}
    padding: .75rem 1rem;
    color: #a09c94;
    font-size: .85rem;
    text-align: center;
}

/* ===== ACCORDEONS (details/summary) ===== */
.page-content details,
.article-content details,
.page-body details {
    border: 1px solid #e3dfd7;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: box-shadow .2s;
}
.page-content details:hover,
.article-content details:hover,
.page-body details:hover {
    box-shadow: 0 4px 16px rgba(208,100,61,.1);
}
.page-content details[open],
.article-content details[open],
.page-body details[open] {
    border-color: #d0643d;
    box-shadow: 0 4px 16px rgba(208,100,61,.12);
}
.page-content details summary,
.article-content details summary,
.page-body details summary {
    padding: 1rem 1.25rem;
    font-weight: 600;
    font-size: 1rem;
    color: #141413;
    background: #f5f3ef;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    user-select: none;
    transition: background .2s, color .2s;
}
.page-content details summary::-webkit-details-marker,
.article-content details summary::-webkit-details-marker,
.page-body details summary::-webkit-details-marker { display: none; }
.page-content details summary::after,
.article-content details summary::after,
.page-body details summary::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: #d0643d;
    transition: transform .3s;
    flex-shrink: 0;
}
.page-content details[open] summary,
.article-content details[open] summary,
.page-body details[open] summary {
    background: #d0643d;
    color: #fff;
    border-radius: 0;
}
.page-content details[open] summary::after,
.article-content details[open] summary::after,
.page-body details[open] summary::after {
    content: '\2212';
    color: #fff;
    transform: rotate(180deg);
}
.page-content details > *:not(summary),
.article-content details > *:not(summary),
.page-body details > *:not(summary) {
    padding: 1.25rem;
    animation: accordionOpen .25s ease;
}
.page-content details p:last-child,
.article-content details p:last-child,
.page-body details p:last-child { margin-bottom: 0; }
@keyframes accordionOpen {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ===== LAYOUT DEUX COLONNES CONTENU ===== */
.content-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
@media (max-width: 768px) {
    .content-grid-2 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ===== TIPTAP GRID BUILDER ===== */
.filament-tiptap-grid-builder {
    display: grid;
    grid-template-columns: repeat(var(--col-count, 2), 1fr);
    gap: 2.5rem;
    align-items: start;
    margin: 1.5rem 0;
}
@media (max-width: 768px) {
    .filament-tiptap-grid-builder {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
.filament-tiptap-grid-builder__column > *:first-child { margin-top: 0; }
.filament-tiptap-grid-builder__column > *:last-child { margin-bottom: 0; }

/* ===== DROPDOWN SOUS-MENU NIVEAU 3 ===== */
.dropdown-submenu { position: relative; }
.dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
    min-width: 200px;
    display: none;
    border-radius: 0;
    box-shadow: 0 18px 45px rgba(0,0,0,.12);
    border: 1px solid rgba(0,0,0,.04);
    padding: .55rem 0;
    font-size: .94rem;
    position: absolute;
    z-index: 9999;
    background: #fff;
}
.dropdown-submenu:hover > .dropdown-menu,
.dropdown-submenu.show > .dropdown-menu {
    display: block;
}
.dropdown-submenu > a.dropdown-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.dropdown-submenu > a.dropdown-item::after {
    content: '\203A';
    font-size: 1.2rem;
    line-height: 1;
    color: #d0643d;
    margin-left: auto;
    padding-left: .5rem;
    border: none !important;
    width: auto !important;
    height: auto !important;
    vertical-align: middle;
}
@media (max-width: 991px) {
    .dropdown-submenu > .dropdown-menu {
        left: 0 !important;
        top: 100% !important;
        margin-top: 0 !important;
        position: static !important;
        box-shadow: none;
        border: none;
        background: #f9f7f4;
        padding-left: 1rem;
    }
}

/* ===== NAV ACTIVE ===== */
.navbar-belife .nav-link.active,
.navbar-belife .nav-link.active:hover,
.navbar-belife .nav-link.active:focus {
    color: #d0643d !important;
    font-weight: 600;
}
.navbar-belife .nav-link.active::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: #d0643d;
    margin-top: 2px;
    border-radius: 2px;
}

/* ===== STYLES TIPTAP BELIFE ===== */

/* Texte lead (grand) */
.page-content .lead, .page-body .lead { font-size: 1.2rem; font-weight: 400; color: #444; line-height: 1.8; }

/* Encadré info */
.page-content .belife-info,
.page-body .belife-info,
.page-content .belife-warning,
.page-body .belife-warning,
.page-content .belife-success,
.page-body .belife-success,
.page-content .belife-highlight,
.page-body .belife-highlight {
    padding: 1.25rem 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border-left: 4px solid;
}
.page-content .belife-info, .page-body .belife-info {
    background: #eff6ff;
    border-color: #1d4ed8;
    color: #1e3a5f;
}
.page-content .belife-warning, .page-body .belife-warning {
    background: #fffbeb;
    border-color: #d4a456;
    color: #78350f;
}
.page-content .belife-success, .page-body .belife-success {
    background: #f0fdf4;
    border-color: #16a34a;
    color: #14532d;
}
.page-content .belife-highlight, .page-body .belife-highlight {
    background: #fdf0eb;
    border-color: #d0643d;
    color: #5b1a1c;
}

/* Bouton CTA */
.page-content .belife-btn,
.page-body .belife-btn {
    display: inline-block;
    background: #d0643d;
    color: #fff !important;
    padding: .75rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none !important;
    transition: background .2s, transform .2s;
    margin: .5rem 0;
}
.page-content .belife-btn:hover,
.page-body .belife-btn:hover {
    background: #5b1a1c;
    transform: translateY(-2px);
}

/* Bouton CTA secondaire */
.page-content .belife-btn-outline,
.page-body .belife-btn-outline {
    display: inline-block;
    background: transparent;
    color: #d0643d !important;
    padding: .75rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid #d0643d;
    text-decoration: none !important;
    transition: all .2s;
    margin: .5rem 0;
}
.page-content .belife-btn-outline:hover,
.page-body .belife-btn-outline:hover {
    background: #d0643d;
    color: #fff !important;
}

/* Citation stylée */
.page-content blockquote,
.page-body blockquote {
    border-left: 4px solid #d0643d;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: #f5f3ef;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #555;
}
.page-content blockquote p, .page-body blockquote p { margin: 0; }

/* Séparateur stylé */
.page-content hr, .page-body hr {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, #d0643d, #d4a456, transparent);
    margin: 2rem 0;
    border-radius: 2px;
}

/* Tableau stylé Belife */
.page-content table, .page-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: .95rem;
}
.page-content table th, .page-body table th {
    background: #141413;
    color: #fff;
    padding: .75rem 1rem;
    text-align: left;
    font-weight: 600;
}
.page-content table td, .page-body table td {
    padding: .65rem 1rem;
    border-bottom: 1px solid #e3dfd7;
    color: #444;
}
.page-content table tr:nth-child(even), .page-body table tr:nth-child(even) {
    background: #f5f3ef;
}
.page-content table tr:hover, .page-body table tr:hover {
    background: #fdf0eb;
}

/* Texte petit */
.page-content small, .page-body small { font-size: .85rem; color: #888; }

/* Texte centré */
.page-content .text-center, .page-body .text-center { text-align: center; }

/* Carte produit */
.page-content .belife-card,
.page-body .belife-card {
    background: #fff;
    border: 1px solid #e3dfd7;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1rem 0;
    box-shadow: 0 4px 16px rgba(0,0,0,.06);
    transition: box-shadow .2s, transform .2s;
}
.page-content .belife-card:hover,
.page-body .belife-card:hover {
    box-shadow: 0 8px 32px rgba(208,100,61,.12);
    transform: translateY(-2px);
}


/* Fix : strong/b dans le contenu TipTap doit hériter de la couleur du span parent
   (sinon la règle .page-body strong { color: noir } écrase la couleur appliquée) */
.page-body strong,
.page-body b,
.article-body strong,
.article-body b {
    color: inherit;
}

/* ============ Bloc TipTap : Grille de cartes (CardsGridBlock) ============ */
.belife-cards-grid {
    display: grid;
    gap: 1.5rem;
    margin: 2.5rem 0;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.belife-cards-grid[data-cols="2"] { grid-template-columns: repeat(2, 1fr); }
.belife-cards-grid[data-cols="3"] { grid-template-columns: repeat(3, 1fr); }
.belife-cards-grid[data-cols="4"] { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 991px) {
    .belife-cards-grid[data-cols="3"],
    .belife-cards-grid[data-cols="4"] { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
    .belife-cards-grid,
    .belife-cards-grid[data-cols="2"],
    .belife-cards-grid[data-cols="3"],
    .belife-cards-grid[data-cols="4"] { grid-template-columns: 1fr; }
}

.belife-card-item {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease-out, box-shadow 0.25s ease-out;
}
.belife-card-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.13);
}
.belife-card-icon-wrap {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem;
}
.belife-card-icon-wrap i {
    font-size: 3.5rem;
    line-height: 1;
}
.belife-card-icon-wrap img {
    max-height: 80px;
    max-width: 80%;
    width: auto;
    object-fit: contain;
}
.belife-card-content {
    padding: 1.3rem 1.4rem 1.5rem;
}
.belife-card-bar {
    display: block;
    width: 36px;
    height: 3px;
    border-radius: 2px;
    background: #d0643d;
    margin-bottom: 0.7rem;
}
.belife-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: #141413;
    margin: 0 0 0.5rem;
    line-height: 1.3;
}
.belife-card-text {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}
