/* ============================================================
   GLOBAL ESSOR — PAGES
   Styles spécifiques à chaque page
============================================================ */

/*impossible de défiler vers la droite ou vers la gauche*/
body {
  overflow-x: hidden;
}

/* ============================================================
   PAGE HEADER (pages intérieures)
============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, #163050 100%);
  padding: var(--space-lg) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(var(--color-blue-rgb), 0.12);
}

.page-hero .badge { margin-bottom: 1rem; }

.page-hero h1 {
  color: var(--color-white);
  font-size: 2.8rem;
  margin-bottom: 1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  max-width: 580px;
  margin: 0 auto var(--space-md);
}

/* ============================================================
   SECTION CONSTAT / PROBLÈME
============================================================ */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-md);
}

.problem-card {
  background: #FFF8F8;
  border: 1px solid #FFE4E4;
  border-radius: var(--radius-lg);
  padding: var(--space-md);
}

.problem-card .icon {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.problem-card h3 {
  font-size: 1rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.problem-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ============================================================
   SECTION APPROCHE / AVANTAGES
============================================================ */
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.approach-text h2 { font-size: 2.2rem; margin-bottom: 1rem; }
.approach-text p { color: var(--color-text-muted); margin-bottom: 1.5rem; line-height: 1.7; }

.approach-visual {
  background: linear-gradient(135deg, var(--color-primary), #163355);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  color: var(--color-white);
}

/* ============================================================
   SECTION SERVICES (grille accueil)
============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-md);
}

/* ============================================================
   SECTION AVIS GOOGLE
============================================================ */
.reviews-section {
  background: var(--color-bg);
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

/* ============================================================
   PAGE CONTACT
============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-lg);
  align-items: start;
}

.contact-info h2 { font-size: 2rem; margin-bottom: 1rem; }
.contact-info p { color: var(--color-text-muted); margin-bottom: var(--space-md); line-height: 1.7; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: var(--space-sm);
}

.contact-detail-icon {
  width: 42px;
  height: 42px;
  background: var(--color-blue-bg);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.15rem;
}

.contact-detail-text span,
.contact-detail-text a {
  font-size: 0.92rem;
  color: var(--color-text-muted);
}

.contact-detail-text a:hover { color: var(--color-blue); }

.contact-form-box {
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
}

.contact-form-box h3 {
  font-size: 1.3rem;
  margin-bottom: var(--space-sm);
}

/* ============================================================
   PAGE PRÉSENCE DIGITALE — OFFRES
============================================================ */
.offer-section {
  background: var(--color-bg);
}

/* ============================================================
   PAGE FAQ
============================================================ */
.faq-categories {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: var(--space-md);
  justify-content: center;
}

.faq-cat-btn {
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--color-border);
  background: var(--color-white);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  color: var(--color-text);
  transition: all var(--transition);
}

.faq-cat-btn:hover,
.faq-cat-btn.active {
  background: var(--color-blue);
  border-color: var(--color-blue);
  color: var(--color-white);
}

/* ============================================================
   SECTION POUR QUI
============================================================ */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-md);
}

.audience-card {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  border: 1px solid var(--color-border);
}

.audience-card .emoji {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.audience-card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.audience-card p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

/* ============================================================
   IA — SOLUTIONS GRID
============================================================ */
.ia-solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
}

.ia-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  transition: all var(--transition);
}

.ia-card:hover {
  border-color: var(--color-blue);
  box-shadow: 0 0 0 3px rgba(var(--color-blue-rgb), 0.06);
}

.ia-card .icon {
  font-size: 2rem;
  margin-bottom: var(--space-sm);
}

.ia-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.ia-card p { font-size: 0.9rem; color: var(--color-text-muted); }

/* ============================================================
   SECTION BG ALTERNÉ
============================================================ */
.bg-alt { background: var(--color-bg); }
.bg-dark {
  background: linear-gradient(135deg, var(--color-primary) 0%, #163050 100%);
  color: var(--color-white);
}
.bg-dark h2, .bg-dark h3 { color: var(--color-white); }
.bg-dark p { color: rgba(255,255,255,0.7); }

/* Lien de retour */
.breadcrumb {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: rgba(255,255,255,0.85); }


/* ============================================================
   ============================================================
   PAGE D'ACCUEIL — DESIGN COMPLET
   (déplacé depuis index.html pour garder le HTML propre)
   ============================================================
============================================================ */

/* ── HERO ── */
.hero {
  background: #fff;
  overflow: hidden;
  min-height: calc(50vh - 76px);
  display: flex;
  align-items: flex-start;
  padding: 4rem 0rem 7rem;
}
.hero-text {
  flex: 1;
  width: 100%;
  max-width: 1000px;
  flex-shrink: 0;
}

.hero-inner {
  width: min(1200px, calc(100% - 40px)); /* Largeur classique de site moderne */
  margin: 0 auto;
  display: flex; /* Si tu as une image à droite du texte */
  justify-content: space-between;
  align-items: center;
}

.hero-label-pill {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-blue);
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  color: #0B1C2D;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  max-width: none;
  text-wrap: nowrap;
}
.hero h1 br { display: inline; }
.hero-sub {
  font-size: 1.05rem;
  color: #0B1C2D;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: none;
}
.hero-btns {
  display: flex;
  align-items: stretch;
  gap: 1rem;
  flex-wrap: nowrap;
}

.hero-btns .btn-hero-primary,
.hero-btns .btn-hero-note {
  white-space: nowrap;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.005em;
  color: #FFFFFF;
  background: linear-gradient(180deg, var(--color-blue-bright) 0%, var(--color-blue) 100%);
  border: 1px solid rgba(15, 35, 100, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 1px 2px rgba(15, 35, 100, 0.15),
    0 8px 22px -6px rgba(var(--color-blue-rgb), 0.4);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), filter 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn-hero-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  filter: brightness(1.08) saturate(1.1);
}
/* ============================================================
   BOUTON NOTE — style "navy radial" unifié
   Appliqué partout : btn-hero-note, btn-pd-note, bb-btn--link,
   bb-google-reviews__btn--ghost
============================================================ */
.btn-hero-note,
.btn-pd-note,
.bb-btn.bb-btn--link,
.bb-google-reviews__btn.bb-google-reviews__btn--ghost {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1;
  color: #fff !important;
  background: radial-gradient(circle at center, #2A4B7C 0%, #162E54 100%) !important;
  border: 1px solid rgba(15, 35, 100, 0.18) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 1px 2px rgba(15, 35, 100, 0.15),
    0 8px 22px -6px rgba(var(--color-blue-rgb), 0.4) !important;
  border-radius: 999px !important;
  padding: 0.7rem 1.3rem !important;
  text-decoration: none;
  white-space: nowrap;
  width: auto !important;
  max-width: max-content !important;
  flex: 0 0 auto !important;
  align-self: center;
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box !important; 
  min-width: 0 !important;
}

.btn-hero-note:hover,
.btn-pd-note:hover,
.bb-btn.bb-btn--link:hover,
.bb-google-reviews__btn.bb-google-reviews__btn--ghost:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 2px 4px rgba(15, 35, 100, 0.2),
    0 12px 28px -6px rgba(var(--color-blue-rgb), 0.5) !important;
}

/* On retire le point ::before historique de .btn-hero-note et .bb-btn--link */
.btn-hero-note::before,
.bb-btn.bb-btn--link::before {
  content: none !important;
}

/* Force le blanc sur les <span> enfants (sinon .bb-google-reviews__btn--ghost span
   et autres règles internes remettent une couleur foncée) */
.btn-hero-note span,
.btn-pd-note span,
.bb-btn.bb-btn--link span,
.bb-google-reviews__btn.bb-google-reviews__btn--ghost span {
  color: #fff !important;
}

/* Bouton "Réserver un échange" — hauteur fixée à 42.1px */
.btn-hero-primary,
.btn-pd-primary,
.bb-cta__btn {
  height: 42.1px !important;
  box-sizing: border-box !important;
  display: inline-flex !important;
  align-items: center !important;
}
/* Hero visual */
.hero-visual {
  position: relative;
  height: 90px;
}
.hero-card {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(var(--color-blue-rgb), 0.10), 0 2px 8px rgba(0,0,0,0.06);
  padding: 1.2rem 1.5rem;
  border: 1px solid #e8eef6;
}
.hc-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8A94A6;
  margin-bottom: 0.3rem;
}
.hc-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0B1C2D;
  font-family: 'DM Sans', sans-serif;
}
.hc-blue { color: var(--color-blue); }
.card-ai  { top: 20px;  left: 0;   width: 190px; }
.card-web { top: 0;     right: 20px; width: 170px; }
.card-vis { top: 160px; left: 40px; width: 200px; }
.card-code {
  top: 140px; right: 0; width: 210px;
  font-family: 'Courier New', monospace;
  font-size: 0.8rem;
  color: #4A5568;
  line-height: 1.7;
  background: #f8faff;
}
.card-code .kw { color: var(--color-blue); font-weight: 700; }
.hero-line {
  position: absolute;
  top: 230px; left: 80px;
  width: 260px; height: 2px;
  background: linear-gradient(90deg, var(--color-blue) 0%, #a0b8f8 100%);
  border-radius: 2px;
}
.hero-dot {
  position: absolute;
  width: 12px; height: 12px;
  background: var(--color-blue);
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--color-blue);
}
.dot1 { top: 225px; left: 75px; }
.dot2 { top: 225px; left: 200px; }
.dot3 { top: 225px; left: 325px; }

/* ── CONSTAT ── */
.pill-badge {
  position: relative;
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 16px;
  margin: 0 0 22px;
  border-radius: 999px;
  background: rgba(var(--color-blue-rgb), 0.08);
  border: 1px solid rgba(var(--color-blue-rgb), 0.16);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-blue) !important;
  width: auto;
  max-width: max-content;
  overflow: hidden;
  isolation: isolate;
}

/* Point animé */
.pill-badge::before {
  content: "";
  display: inline-block;
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--color-blue);
  box-shadow:
    0 0 0 0 rgba(var(--color-blue-rgb), 0.5),
    0 0 8px rgba(47, 123, 255, 0.6);
  flex-shrink: 0;
  z-index: 1;
  animation: bb-kicker-pulse 2.5s ease-out infinite;
}

/* Shimmer */
.pill-badge::after {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(47, 123, 255, 0.25) 50%,
    transparent 100%
  );
  animation: bb-kicker-shimmer 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

/* Animation du point */
@keyframes pill-badge-pulse {
  0% {
    box-shadow:
      0 0 0 0 rgba(var(--color-blue-rgb), 0.6),
      0 0 8px rgba(47, 123, 255, 0.6);
  }

  70% {
    box-shadow:
      0 0 0 8px rgba(var(--color-blue-rgb), 0),
      0 0 8px rgba(47, 123, 255, 0.6);
  }

  100% {
    box-shadow:
      0 0 0 0 rgba(var(--color-blue-rgb), 0),
      0 0 8px rgba(47, 123, 255, 0.6);
  }
}

/* Animation du reflet */
@keyframes pill-badge-shimmer {
  0%, 70%, 100% {
    transform: translateX(0);
    opacity: 0;
  }

  80% {
    opacity: 1;
  }

  90% {
    transform: translateX(400%);
    opacity: 0;
  }
}

/* Accessibilité */
@media (prefers-reduced-motion: reduce) {
  .pill-badge::before,
  .pill-badge::after {
    animation: none;
  }
}

.section-title-xl {
  font-size: 3rem;
  font-weight: 800;
  color: #0B1C2D;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}

.section-title-xl .blue {
  color: var(--color-blue);
}
.section-title-xl {
  font-size: 3rem;
  font-weight: 800;
  color: #0B1C2D;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}
.section-title-xl .blue { color: var(--color-blue); }

.section-sub {
  font-size: 1.05rem;
  color: #4A5568;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 3.5rem;
}
.constat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.constat-card {
  background: #fff;
  border-radius: 18px;
  padding: 2rem;
  border: 1px solid #e8eef6;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* La barre de soulignement en pied de carte */
.constat-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background: #1A43C6;
  transition: width 0.4s ease;
}

/* Au survol de la carte */
.constat-card:hover {
  border-color: #1A43C6;
  box-shadow: 0 10px 30px rgba(var(--color-blue-rgb), 0.18);
}

/* La barre se remplit au survol */
.constat-card:hover::after {
  width: 100%;
}
.constat-num {
  position: absolute;
  top: 1.2rem; right: 1.5rem;
  font-size: 2.8rem;
  font-weight: 800;
  color: #e8eef6;
  font-family: 'Manrope', sans-serif;
  line-height: 1;
}
.constat-icon {
  width: 48px; height: 48px;
  background: var(--color-blue);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}
/* Le logo pivote légèrement au survol de la carte */
.constat-card:hover .constat-icon {
  transform: rotate(-8deg) scale(1.05);
}
.constat-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0B1C2D;
  margin-bottom: 0.6rem;
}
.constat-card p {
  font-size: 0.9rem;
  color: #4A5568;
  line-height: 1.65;
}

/* ── APPROCHE ── */

.section-constat {
  background: #fff;
  padding: 3rem 6rem;
}

.section-approche {
  background: #fff;
  padding: 6rem 0 3rem;
}
.approche-pills {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.approche-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #f4f6fa;
  border: 1px solid #e2e8f4;
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: #0B1C2D;
  cursor: pointer;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

/* Effet au survol */
.approche-pill:hover {
  border-color: #1A43C6;
  box-shadow: 0 6px 18px rgba(var(--color-blue-rgb), 0.18);
  transform: translateY(-2px);
}
.approche-pill .dot { width:7px; height:7px; border-radius:50%; background:var(--color-blue); }
.dashboard-visual {
  background: linear-gradient(135deg, #0B1C2D 0%, #163355 100%);
  border-radius: 20px;
  padding: 2rem;
  max-width: 780px;
  margin: 0 auto;
  box-shadow: 0 24px 60px rgba(11,28,45,0.18);
  position: relative;
}
.dash-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.dash-dot { width:12px; height:12px; border-radius:50%; }
.dd-red{background:#ff5f57;} .dd-yellow{background:#ffbd2e;} .dd-green{background:#28ca41;}
.dash-title {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-left: 0.5rem;
}
.dash-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 1rem;
}
.dash-left {
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 1rem;
}
.dash-msg {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  margin-bottom: 0.5rem;
}
.dash-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--color-blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; color: #fff; font-weight: 700;
  flex-shrink: 0;
}
.dash-name { font-size: 0.78rem; color: rgba(255,255,255,0.85); font-weight: 600; }
.dash-sub  { font-size: 0.68rem; color: rgba(255,255,255,0.4); }
.dash-right {
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 1.2rem;
}
.dash-client-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--color-blue); border-radius: 999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.7rem; font-weight: 700; color: #fff;
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}
.dash-client-name {
  font-size: 1.1rem; font-weight: 700; color: #fff;
  margin-bottom: 0.2rem;
}
.dash-client-sub { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-bottom: 1rem; }
.dash-stats {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 0.5rem;
}
.dash-stat-item {
  background: rgba(255,255,255,0.06);
  border-radius: 8px; padding: 0.6rem;
  text-align: center;
}
.dash-stat-num { font-size: 1.1rem; font-weight: 800; color: #fff; font-family: 'DM Sans',sans-serif; }
.dash-stat-lbl { font-size: 0.65rem; color: rgba(255,255,255,0.4); margin-top: 0.1rem; }

/* ── CEO ── */
.section-ceo {
  background: #fff;
  padding: 6rem 0;
}
.ceo-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 5rem;
  align-items: center;
}
.ceo-visual {
  position: relative;
  padding-top: 3rem;
}
.ceo-frame {
  border: 2px solid #e2e8f4;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.ceo-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #e8eef6 0%, #d0daf4 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.ceo-photo-placeholder .avatar-icon {
  width: 80px; height: 80px;
  background: #c0cbea;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
}
.ceo-photo-placeholder p {
  font-size: 0.85rem;
  color: #8A94A6;
  font-style: italic;
}

.ceo-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}

.ceo-name-tag {
  position: absolute;
  bottom: 1.2rem; right: 1.2rem;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 18px;
  padding: 0.8rem 1.3rem;
  text-align: right;
  box-shadow: 0 8px 24px rgba(11, 28, 45, 0.15);
}
.ceo-name-tag strong { display: block; font-size: 0.95rem; color: #0B1C2D; }
.ceo-name-tag span   { font-size: 0.72rem; color: #8A94A6; text-transform: uppercase; letter-spacing: 0.06em; }
.ceo-badge {
  position: absolute;
  top: -2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 5;
  background: #fff;
  border: 1.5px solid var(--color-blue);
  border-radius: 999px;
  padding: 0.4rem 1.1rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(var(--color-blue-rgb), 0.15);
}
.ceo-badge::before { content:"• "; color:var(--color-blue); }
.corner { position:absolute; width:28px; height:28px; border-color:var(--color-blue); border-style:solid; z-index:4; }
.corner-tl { top:1.5rem; left:-14px; border-width:3px 0 0 3px; border-top-left-radius:6px; }
.corner-tr { top:1.5rem; right:-14px; border-width:3px 3px 0 0; border-top-right-radius:6px; }
.corner-bl { bottom:-14px; left:-14px; border-width:0 0 3px 3px; border-bottom-left-radius:6px; }
.corner-br { bottom:-14px; right:-14px; border-width:0 3px 3px 0; border-bottom-right-radius:6px; }
.ceo-content h2 { font-size: 3rem; font-weight: 800; color: #0B1C2D; line-height: 1.2; margin-bottom: 1.25rem; }
.ceo-content h2 .blue { color: var(--color-blue); }
.ceo-content > p { font-size: 1.12rem; color: #4A5568; line-height: 1.75; margin-bottom: 2rem; }
.ceo-quote {
  background: #f8faff;
  border-left: 4px solid var(--color-blue);
  border-radius: 0 16px 16px 0;
  padding: 1.8rem;
  position: relative;
  box-shadow: 0 12px 32px rgba(var(--color-blue-rgb), 0.12), -6px 0 16px rgba(var(--color-blue-rgb), 0.25);
}
.quote-mark {
  font-size: 3rem;
  color: #dbe5f8;
  font-family: Georgia, serif;
  line-height: 1;
  position: absolute;
  top: 0.5rem; right: 1rem;
}
.ceo-quote p {
  font-size: 0.97rem;
  color: #0B1C2D;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.quote-sep { width: 32px; height: 2px; background: var(--color-blue); margin-bottom: 0.75rem; }
.quote-author strong { display: block; font-size: 0.9rem; color: #0B1C2D; }
.quote-author span   { font-size: 0.75rem; color: #8A94A6; text-transform: uppercase; letter-spacing: 0.07em; }

/* ── AVIS GOOGLE ── */
.google-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: #fff; border: 1px solid #e2e8f4;
  border-radius: 999px; padding: 0.45rem 1.1rem;
  font-size: 0.8rem; font-weight: 700; color: #0B1C2D;
  letter-spacing: 0.06em;
  margin-bottom: 2rem;
}

/* Carte note globale */
.avis-score-card {
  position: relative;
  background: #fff;
  border-radius: 22px;
  padding: 2.2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 760px;
  margin: 0 auto 3.5rem;
  box-shadow: 0 20px 50px rgba(var(--color-blue-rgb), 0.12), 0 4px 12px rgba(11,28,45,0.05);
  overflow: hidden;
}
/* Bordure bleue en haut, dégradée (foncée au centre, blanche aux bords) */
.avis-score-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1.5px;
  background: linear-gradient(90deg,
    rgba(var(--color-blue-rgb), 0) 0%,
    rgba(var(--color-blue-rgb), 0.4) 25%,
    var(--color-blue) 50%,
    rgba(var(--color-blue-rgb), 0.4) 75%,
    rgba(var(--color-blue-rgb), 0) 100%);
}

.avis-brand {
  display: flex; align-items: center; gap: 1.2rem;
}
/* Case logo (vide, prête pour ton image) */
.avis-logo {
  width: 72px; height: 72px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.avis-logo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.avis-brand-text { text-align: left; }
.avis-brand-name { font-size: 1.25rem; font-weight: 800; color: #0B1C2D; font-family: 'Manrope',sans-serif; margin-bottom: 0.25rem; }
.avis-stars { color: #F59E0B; font-size: 1.15rem; letter-spacing: 3px; margin-bottom: 0.3rem; }
.avis-verified { font-size: 0.85rem; color: #4A5568; }
.avis-verified strong { color: #0B1C2D; }

.avis-score { display: flex; flex-direction: column; align-items: flex-end; gap: 0.6rem; }
/* 5,0 aligné avec "sur 5" sur la même ligne de base */
.avis-score-line { display: flex; align-items: baseline; gap: 0.4rem; }
.avis-score-num { font-size: 3.2rem; font-weight: 800; color: var(--color-blue); font-family: 'Manrope',sans-serif; line-height: 1; }
.avis-score-txt { font-size: 1rem; color: #8A94A6; font-weight: 500; }
.avis-voir {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: #fff; border: 1.5px solid #e2e8f4;
  border-radius: 999px; padding: 0.55rem 1.2rem;
  font-size: 0.85rem; font-weight: 600; color: #0B1C2D;
  text-decoration: none;
  transition: all 0.25s ease;
}
.avis-voir:hover {
  border-color: var(--color-blue); color: var(--color-blue);
  background: #f4f7ff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(var(--color-blue-rgb), 0.18);
}

/* ── CARROUSEL DÉFILANT ── */
.avis-marquee {
  overflow: hidden;
  width: 100%;
  padding: 1rem 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.avis-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: avis-scroll 45s linear infinite;
}
@keyframes avis-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.avis-card {
  width: 360px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid #e8eef6;
  box-shadow: 0 2px 8px rgba(var(--color-blue-rgb), 0.04);
  text-align: left;
}
.avis-card-top {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.avis-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--color-blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.avis-author-name { font-size: 0.9rem; font-weight: 700; color: #0B1C2D; }
.avis-author-type { font-size: 0.78rem; color: var(--color-blue); font-weight: 500; }
.avis-card-stars { color: #F59E0B; font-size: 0.9rem; margin-bottom: 0.75rem; }
.avis-card-text {
  font-size: 0.88rem; color: #4A5568; line-height: 1.65;
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical;
  line-clamp: 4;
  overflow: hidden; margin-bottom: 1rem;
}
.avis-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.75rem; color: #8A94A6;
}
.avis-card-footer .g-logo { font-size: 0.75rem; font-weight: 700; color: #4A5568; }

/* ── BOUTONS BAS ── */
.avis-btns {
  display: flex; gap: 1rem; justify-content: center; align-items: center;
  margin-top: 2.5rem;
}
.btn-avis-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--color-blue); color: #fff;
  border: 1.5px solid var(--color-blue);
  border-radius: 999px;
  padding: 0.6rem 1.6rem;
  font-size: 0.9rem; font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}
.btn-avis-primary:hover {
  background: #1a42b8; border-color: #1a42b8;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(var(--color-blue-rgb), 0.3);
  color: #fff;
}
.btn-avis-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: #fff; color: #0B1C2D;
  border: 1.5px solid #e2e8f4;
  border-radius: 999px;
  padding: 0.6rem 1.6rem;
  font-size: 0.9rem; font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}
.btn-avis-secondary:hover {
  border-color: var(--color-blue); color: var(--color-blue);
  background: #f4f7ff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(var(--color-blue-rgb), 0.15);
}

.avis-verified-note {
  text-align: center;
  font-size: 0.82rem;
  color: #8A94A6;
  margin-top: 1rem;
  display: flex; align-items: center; justify-content: center; gap: 0.4rem;
}
.avis-verified-note::before { content: "✓"; color: #22c55e; font-weight: 700; }

/* ── CTA FINAL ── */

.section-cta-final {
  background: #fff;
  padding: 4rem 0 9rem;
}
.cta-final-card {
  background: #fff;
  border-radius: 24px;
  padding: 2.5rem 2rem;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: 0 20px 50px rgba(var(--color-blue-rgb), 0.12), 0 6px 16px rgba(11,28,45,0.06);
  border: 1px solid #e8eef6;
}
.cta-final-card h2 { font-size: 2.2rem; font-weight: 800; color: #0B1C2D; line-height: 1.25; margin-bottom: 1rem; }
.cta-final-card h2 .blue { color: var(--color-blue); }
.cta-final-card h2 .blue {
  color: var(--color-blue);
  background: linear-gradient(transparent 60%, rgba(var(--color-blue-rgb), 0.15) 60%);
}
.btn-cta-final {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.005em;
  color: #FFFFFF;
  background: linear-gradient(180deg, var(--color-blue-bright) 0%, var(--color-blue) 100%);
  border: 1px solid rgba(15, 35, 100, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 1px 2px rgba(15, 35, 100, 0.15),
    0 8px 22px -6px rgba(var(--color-blue-rgb), 0.4);
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), filter 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn-cta-final:hover {
  color: #fff;
  transform: translateY(-2px);
  filter: brightness(1.08) saturate(1.1);
}
.cta-final-note {
  font-size: 0.82rem; color: #8A94A6; margin-top: 1rem;
  display: flex; align-items: center; justify-content: center; gap: 0.4rem;
}
.cta-final-note::before { content:"•"; color:#22c55e; font-size:1rem; }

/* ============================================================
   ANIMATIONS AU SCROLL (apparition floutée bas → haut)
============================================================ */

/* État de départ : invisible, légèrement plus bas, flou */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(8px);
  transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
}

/* État visible : net, en place */
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* ============================================================
   PAGE PRÉSENCE DIGITALE
============================================================ */

/* HERO */
.pd-hero {
  background: #fff;
  padding: 4rem 0 5rem;
  overflow: visible;
}
.pd-hero-inner {
  display: block;
}
.pd-hero-text { text-align: left; }
.pd-hero-text .pill-badge { margin-bottom: 1.5rem; }
.pd-hero-text h1 {
  font-size: 2.8rem; font-weight: 800; color: #0B1C2D;
  line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 1.5rem;
}
.pd-hero-text h1 .blue { color: #16285b; }
.pd-hero-sub { font-size: 1.05rem; color: #4A5568; line-height: 1.7; margin-bottom: 5rem; max-width: 100%; }
.pd-hero-btns { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.btn-pd-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.005em;
  color: #FFFFFF;
  background: linear-gradient(180deg, var(--color-blue-bright) 0%, var(--color-blue) 100%);
  border: 1px solid rgba(15, 35, 100, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 1px 2px rgba(15, 35, 100, 0.15),
    0 8px 22px -6px rgba(var(--color-blue-rgb), 0.4);
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), filter 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn-pd-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  filter: brightness(1.08) saturate(1.1);
}
.btn-pd-note {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: #fff; border: 1px solid #e2e8f4;
  border-radius: 999px; padding: 0.5rem 1.4rem;
  font-size: 0.88rem; font-weight: 500; color: #4A5568; text-decoration: none;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.btn-pd-note:hover { border-color: var(--color-blue); transform: translateY(-2px); }

/* HERO VISUAL — cartes flottantes */
.pd-card {
  position: absolute; background: #fff; border-radius: 14px;
  box-shadow: 0 8px 28px rgba(var(--color-blue-rgb), 0.10), 0 2px 6px rgba(0,0,0,0.05);
  border: 1px solid #e8eef6; padding: 1rem 1.3rem;
  display: flex; flex-direction: column; gap: 0.2rem;
}
.pd-card-label { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.08em; color: #8A94A6; text-transform: uppercase; }
.pd-card-val { font-size: 1rem; font-weight: 700; color: #0B1C2D; font-family: 'Manrope',sans-serif; }
.pd-card-val.blue { color: var(--color-blue); }
.pd-card-growth { top: 20px; left: 0; }
.pd-card-web    { top: 0; left: 45%; }
.pd-card-local  { top: 130px; left: 15%; }
.pd-card-ai     { top: 115px; right: 0; }
.pd-card-code {
  top: 250px; left: 5%;
  font-family: 'Courier New', monospace; font-size: 0.78rem;
  color: #4A5568; line-height: 1.7; background: #f8faff;
}
.pd-card-code .kw { color: var(--color-blue); font-weight: 700; }
.pd-card-score { top: 230px; right: 10%; }
.pd-score-big { font-size: 1.8rem; font-weight: 800; color: var(--color-blue); font-family: 'Manrope',sans-serif; }
.pd-score-big small { font-size: 0.6rem; color: #8A94A6; margin-left: 2px; }

/* ── TARIFS : voir assets/css/pd-tarifs-v4.css ── */
/* ── POUR QUI : voir assets/css/pd-audience.css ── */
/* ── LIVRABLES : voir assets/css/pd-livrables.css ── */
/* ── FAQ (présence-digitale) : voir assets/css/pd-faq.css ── */

/* ============================================================
   UNIFICATION HAUTEUR DES BOUTONS HERO — toutes pages
   Garantit que les 2 boutons de chaque hero s'alignent
   visuellement, peu importe la page (accueil, présence digitale,
   identité de marque, création d'entreprise, intégration IA).
============================================================ */
.btn-hero-primary,
.btn-hero-note,
.btn-pd-primary,
.btn-pd-note,
.btn-pd-primary,
.btn-pd-note,
.bb-btn.bb-btn--primary,
.bb-btn.bb-btn--link,
.bb-google-reviews__btn--primary,
.bb-google-reviews__btn--ghost {
  min-height: 44px !important;
  height: 44px !important;
  box-sizing: border-box !important;
  align-items: center !important;
  display: inline-flex !important;
}

/* ============================================================
   ÉQUILIBRAGE DU HERO — espace gauche/droite responsive
   Le titre doit être à la même distance du bord gauche que
   le visuel l'est du bord droit, sur tous types d'écran.
============================================================ */
.hero,
.pd-hero,
.bb-hero,
.bb-universal-hero {
  padding-inline: clamp(20px, 5vw, 60px);
}
.hero-inner,
.pd-hero-inner,
.bb-hero__inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 0;
}
@media (min-width: 1600px) {
  .hero-inner,
  .pd-hero-inner,
  .bb-hero__inner { max-width: 1440px; }
}

/* ============================================================
   ANIMATIONS DES CARTES DU HERO (accueil, présence digitale,
   identité de marque) — toutes les cartes a côté du titre
   bougent désormais subtilement au hover, en plus de
   l'animation orbitale déjà en place.
============================================================ */
.ge-card,
.pd-card,
.id-card {
  transition:
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s ease;
  will-change: transform;
}
.ge-card:hover,
.pd-card:hover,
.id-card:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow:
    0 24px 48px -10px rgba(var(--color-blue-rgb), 0.25),
    0 8px 20px -4px rgba(11, 28, 45, 0.10);
  z-index: 10;
}

/* Petite respiration permanente (subtile) sur les cartes statiques
   du hero qui n'ont pas d'orbite (.pd-card, .id-card statiques) */
@keyframes ge-card-breathe {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}
.pd-card:not(:hover),
.id-card:not(:hover) {
  animation: ge-card-breathe 6s ease-in-out infinite;
}
.pd-card:nth-of-type(2):not(:hover) { animation-delay: 1.5s; }
.pd-card:nth-of-type(3):not(:hover) { animation-delay: 3s; }
.pd-card:nth-of-type(4):not(:hover) { animation-delay: 4.5s; }
.id-card:nth-of-type(2):not(:hover) { animation-delay: 1.5s; }
.id-card:nth-of-type(3):not(:hover) { animation-delay: 3s; }
.id-card:nth-of-type(4):not(:hover) { animation-delay: 4.5s; }

@media (prefers-reduced-motion: reduce) {
  .pd-card,
  .id-card,
  .ge-card { animation: none !important; transition: none !important; }
}

/* ============================================================
   PREMIÈRE SECTION FULL-HEIGHT — toutes pages sauf FAQ
   La première section sous le <main> remplit le viewport
   visible, ce qui evite l'effet "petite section + grand vide"
   sur les pages courtes.
   FAQ exclue : .ge-faq n'est PAS cible.
============================================================ */

/* Marketing heros : flex column centre pour aligner verticalement
   le contenu dans la hauteur disponible */
main > .hero,
main > .pd-hero,
main > .bb-hero,
main > .bb-contact-form {
  min-height: calc(100vh - 88px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Pages texte (legals + plan du site) : juste min-height,
   le contenu reste en haut (pas de centrage vertical d'un bloc
   texte court qui creerait du vide en haut) */
main > .ge-legal__section:first-of-type,
main > .ge-sitemap {
  min-height: calc(100vh - 88px);
}

/* Mobile : header reduit a 64px */
@media (max-width: 980px) {
  main > .hero,
  main > .pd-hero,
  main > .bb-hero,
  main > .bb-contact-form,
  main > .ge-legal__section:first-of-type,
  main > .ge-sitemap {
    min-height: calc(100vh - 64px);
  }
}

/* ============================================================
   DIMENSIONNEMENT INTERNE — meme boite interne que bb-hero__inner
   sur accueil (.hero-inner) et presence-digitale (.pd-hero-inner)
   ----------------------------------------------------------------
   On NE TOUCHE PAS au display (flex pour hero-inner, grid pour
   pd-hero-inner) : seulement min-height + padding pour creer la
   meme boite "70vh + 2rem/60px" que sur identite-marque.
   ============================================================ */
main > .hero .hero-inner,
main > .pd-hero .pd-hero-inner {
  min-height: 70vh;
  padding-top: 2rem;
  padding-bottom: 60px;
}

/* Sur accueil, .hero avait un padding 4rem/7rem qui doublait le
   padding interne et decalait le contenu vers le bas. On le retire
   maintenant que le hero-inner porte son propre padding. */
main > .hero {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
main > .pd-hero {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* (Ancienne approche d'elargissement du container retiree :
   inefficace en dessous de ~1240px de viewport car le container
   est deja constraint par la largeur de l'ecran.) */

/* (Ancien tweak transform: translateY(-40px) sur .pd-hero-text
   retire : remplace par le layout absolute libre ci-dessous.) */

/* ============================================================
   HERO ACCUEIL : LAYOUT LIBRE (texte + visuel independants)
   ============================================================
   Le hero-inner devient une scene en position:relative.
   Les enfants .hero-text et .hero-visual sont position:absolute
   et peuvent etre librement positionnes/redimensionnes via les
   variables CSS ci-dessous (modifiables au cas par cas).

   Variables :
     --text-top    : position verticale du texte (ex: 50%, 80px)
     --text-left   : position horizontale du texte
     --text-width  : largeur de la colonne texte
     --visual-top  : position verticale du visuel
     --visual-right: distance depuis le bord droit
     --visual-width: largeur de l'animation 3D
   ============================================================ */
@media (min-width: 821px) {
  main > .hero,
  main > .pd-hero {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  main > .hero .hero-inner {
    /* Variables a modifier pour deplacer/agrandir librement.
       Valeurs par defaut alignees sur la mise en page d'identite-marque
       (.bb-hero__inner : inner-box 1200px centree, texte a gauche
       et visuel a droite, tous deux verticalement centres). */
    --text-top:     34%;
    --text-left:    -162px;
    --text-width:   600px;
    --visual-top:   25%;
    --visual-right: -65px;
    --visual-width: 600px;
    --btns-top:     auto;
    --btns-bottom:  105px;
    --btns-left:    -162px;

    display: block !important;
    position: relative !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 2rem 0 60px !important;
    min-height: 70vh;
  }

  main > .hero .hero-text {
    position: absolute !important;
    top: var(--text-top);
    left: var(--text-left);
    transform: translateY(-50%);
    width: var(--text-width);
    max-width: calc(100% - 80px);
    margin: 0 !important;
    z-index: 2;
  }

  main > .hero .hero-visual {
    position: absolute !important;
    top: var(--visual-top);
    right: var(--visual-right);
    transform: translateY(-50%);
    width: var(--visual-width);
    margin: 0 !important;
    z-index: 1;
  }

  /* Boutons CTA detaches : positionnables independamment via
     --btns-top, --btns-bottom, --btns-left. Si --btns-top vaut
     "auto" (defaut), c'est --btns-bottom qui prend la main. */
  main > .hero .hero-btns {
    position: absolute !important;
    top: var(--btns-top);
    bottom: var(--btns-bottom);
    left: var(--btns-left);
    margin: 0 !important;
    z-index: 3;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }

}

/* ============================================================
   HERO PRESENCE-DIGITALE : LAYOUT LIBRE (meme systeme que .hero)
   Texte + visuel 3D + boutons CTA, tous trois independants et
   positionnables via variables CSS.
   ============================================================ */
@media (min-width: 821px) {
  main > .pd-hero,
  main > .pd-hero .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: none !important;
    margin: 0 !important;
    width: 100% !important;
  }

  main > .pd-hero .pd-hero-inner {
    --pd-text-top:     39%;
    --pd-text-left:    233px;
    --pd-text-width:   613px;
    --pd-visual-top:   55%;
    --pd-visual-right: 350px;
    --pd-visual-width: 500px;
    --pd-btns-top:     auto;
    --pd-btns-bottom:  105px;
    --pd-btns-left:    233px;

    display: block !important;
    position: relative !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 2rem 0 60px !important;
    min-height: 70vh;
    /* Annule le grid 1.35fr/1fr venant de pd-hero-visual.css */
    grid-template-columns: none !important;
    column-gap: 0 !important;
  }

  main > .pd-hero .pd-hero-text {
    position: absolute !important;
    top: var(--pd-text-top);
    left: var(--pd-text-left);
    transform: translateY(-50%) !important;
    width: var(--pd-text-width);
    max-width: calc(100% - 80px);
    margin: 0 !important;
    z-index: 2;
  }

  main > .pd-hero .pd-hero-visual {
    position: absolute !important;
    top: var(--pd-visual-top);
    right: var(--pd-visual-right);
    transform: translateY(-50%) !important;
    width: var(--pd-visual-width);
    margin: 0 !important;
    z-index: 1;
    /* Annule le justify-content:flex-end + translateX(60px) de
       pd-hero-visual.css qui n'est plus pertinent en absolute */
    display: block !important;
    justify-content: initial !important;
  }

  main > .pd-hero .pd-hero-btns {
    position: absolute !important;
    top: var(--pd-btns-top);
    bottom: var(--pd-btns-bottom);
    left: var(--pd-btns-left);
    margin: 0 !important;
    z-index: 3;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
}

/* ============================================================
   FIX KEYFRAMES SHIMMER — sweep complet de gauche a droite
   Avant : opacite passait a 1 puis 0 PENDANT le mouvement, donc
   le balayage ne traversait visuellement que la moitie du badge.
   Apres : opacite stable a 1 durant tout le mouvement, fade-in
   ultra rapide en debut et fade-out ultra rapide en fin.
   Override les 3 keyframes existantes utilisees dans le site.
   ============================================================ */
@keyframes bb-kicker-shimmer {
  0%, 70%       { transform: translateX(0);    opacity: 0; }
  72%           { transform: translateX(0);    opacity: 1; }
  88%           { transform: translateX(400%); opacity: 1; }
  90%, 100%     { transform: translateX(400%); opacity: 0; }
}
@keyframes bb-cs2-shimmer {
  0%, 70%       { transform: translateX(0);    opacity: 0; }
  72%           { transform: translateX(0);    opacity: 1; }
  88%           { transform: translateX(400%); opacity: 1; }
  90%, 100%     { transform: translateX(400%); opacity: 0; }
}
@keyframes bb-cs3-shimmer {
  0%, 70%       { transform: translateX(0);    opacity: 0; }
  72%           { transform: translateX(0);    opacity: 1; }
  88%           { transform: translateX(400%); opacity: 1; }
  90%, 100%     { transform: translateX(400%); opacity: 0; }
}

/* ============================================================
   AJOUT DU SHIMMER aux kickers qui n'en ont pas encore.
   Liste des cibles :
   - .bb-kicker          (utilise dans hero identite/IA/creation)
   - .hero-label-pill    (utilise dans hero accueil + presence-digitale)
   - .bb-audience__kicker, .bb-deliverables__kicker, .bb-deroule__kicker,
     .bb-faq__kicker, .bb-home-offers__kicker (presence-digitale)
   - .bb-craft__kicker, .bb-id-converge__kicker (identite-marque)
   - .bb-google-reviews__kicker (homepage)
   - .ge-ai-approach__kicker (integration IA)
   Les kickers qui en ont DEJA un (.ge-kicker, .bb-creation-s2/3__kicker,
   .bb-contact-form__kicker) ne sont PAS modifies, ils gardent leur
   propre regle existante (qui beneficient du nouveau keyframe fix
   ci-dessus).
   ============================================================ */
.bb-kicker,
.hero-label-pill,
.bb-audience__kicker,
.bb-deliverables__kicker,
.bb-deroule__kicker,
.bb-faq__kicker,
.bb-home-offers__kicker,
.bb-craft__kicker,
.bb-id-converge__kicker,
.ge-ai-approach__kicker,
.ge-ai-problem__kicker,
.ge-ai-modules__kicker,
.ge-ai-cases__kicker {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.bb-kicker::after,
.hero-label-pill::after,
.bb-audience__kicker::after,
.bb-deliverables__kicker::after,
.bb-deroule__kicker::after,
.bb-faq__kicker::after,
.bb-home-offers__kicker::after,
.bb-craft__kicker::after,
.bb-id-converge__kicker::after,
.ge-ai-approach__kicker::after,
.ge-ai-problem__kicker::after,
.ge-ai-modules__kicker::after,
.ge-ai-cases__kicker::after {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(47, 123, 255, 0.30) 50%,
    transparent 100%
  );
  animation: bb-kicker-shimmer 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@media (prefers-reduced-motion: reduce) {
  .bb-kicker::after,
  .hero-label-pill::after,
  [class*="__kicker"]::after {
    animation: none !important;
  }
}
