/* ==========================================================================
   ILNET TELECOM — Couche « BUSINESS » : souscription, cotation, suivi,
   widgets temps réel (météo, change), assistant IA statique, galerie Tchad.
   Chargée après enrich.css sur toutes les pages.
   ========================================================================== */

/* ==========================================================================
   0. Menu compact sur écrans moyens (le menu business est plus fourni)
   ========================================================================== */

@media (min-width: 1100px) and (max-width: 1600px) {
  .navbar { gap: 8px; }
  .nav-links { gap: 0; }
  .nav-links > a,
  .nav-links .dropdown > a { font-size: 13px; padding: 8px 7px; }
  .nav-cta { margin-left: 4px; padding-left: 8px; gap: 6px; }
  .nav-links a.btn-ghost,
  .nav-links a.btn-solid { padding: 0 12px; font-size: 12px; white-space: nowrap; }
  .navbar .logo { max-width: 110px; height: auto; }
}

/* Jusqu'à 1099px, le hamburger est actif (style.css) : le panneau du
   menu doit rester fermé tant qu'il n'est pas ouvert. */
@media (max-width: 1099px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; }
}

/* ==========================================================================
   1. Widgets temps réel (météo N'Djamena, taux de change)
   ========================================================================== */

.bz-live-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: 600 12.5px/1 var(--font-display, 'Archivo', sans-serif);
  color: #fff;
  white-space: nowrap;
}

.bz-live-chip .sep { opacity: .4; margin: 0 4px; }

.bz-fx-panel {
  background: #fff;
  border: 1px solid var(--border-card, #EFE2D2);
  border-radius: 20px;
  box-shadow: var(--shadow-card, 0 10px 30px rgba(86, 52, 16, .07));
  padding: 26px 24px;
}

.bz-fx-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 4px;
  border-bottom: 1px solid #F5EBDD;
  font: 600 14.5px/1.4 var(--font-display, 'Archivo', sans-serif);
  color: var(--text-body, #59422C);
}

.bz-fx-row:last-child { border-bottom: none; }
.bz-fx-row .v { color: var(--brand); font-weight: 800; font-variant-numeric: tabular-nums; }

/* ==========================================================================
   2. Flux de souscription / cotation
   ========================================================================== */

.bz-flow { max-width: 980px; margin: 0 auto; padding: 40px 24px 80px; }

.bz-stepper {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
  counter-reset: step;
}

.bz-stepper .st {
  display: flex;
  align-items: center;
  gap: 10px;
  font: 700 13px/1.2 var(--font-display, 'Archivo', sans-serif);
  color: var(--text-muted, #8A6A4C);
}

.bz-stepper .st::before {
  counter-increment: step;
  content: counter(step);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #F3E7D7;
  color: var(--text-muted, #8A6A4C);
  font-weight: 900;
  transition: all .3s ease;
}

.bz-stepper .st:not(:last-child)::after {
  content: '';
  width: clamp(26px, 6vw, 80px);
  height: 2px;
  background: #F3E7D7;
  margin: 0 14px;
}

.bz-stepper .st.done::before { background: #1D8348; color: #fff; content: '✓'; }
.bz-stepper .st.active { color: var(--text-strong, #2B1B0E); }
.bz-stepper .st.active::before {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 0 0 6px rgba(229, 115, 1, .16);
}

.bz-stepper .st span { display: none; }
@media (min-width: 700px) { .bz-stepper .st span { display: inline; } }

.bz-step-panel { display: none; animation: en-slide-up .45s cubic-bezier(.22, .8, .3, 1); }
.bz-step-panel.active { display: block; }

/* Sélecteur d'offres */
.bz-offer-pick {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(215px, 1fr));
  margin-top: 26px;
}

.bz-offer-card {
  position: relative;
  background: #fff;
  border: 2px solid var(--border-card, #EFE2D2);
  border-radius: 18px;
  padding: 20px 18px;
  cursor: pointer;
  transition: all .25s ease;
  text-align: left;
}

.bz-offer-card:hover { border-color: rgba(229, 115, 1, .5); transform: translateY(-4px); }

.bz-offer-card.selected {
  border-color: var(--brand);
  background: #FFF6EA;
  box-shadow: 0 14px 30px rgba(229, 115, 1, .18);
}

.bz-offer-card.selected::after {
  content: '✓';
  position: absolute;
  top: 12px;
  right: 12px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-weight: 900;
  font-size: 13px;
  display: grid;
  place-items: center;
}

.bz-offer-card .cat {
  font: 800 10.5px/1 var(--font-display, 'Archivo', sans-serif);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brand);
}

.bz-offer-card h4 {
  font: 800 16px/1.3 var(--font-display, 'Archivo', sans-serif);
  color: var(--text-strong, #2B1B0E);
  margin: 8px 0 4px;
}

.bz-offer-card .pr {
  font: 700 13.5px/1.4 var(--font-display, 'Archivo', sans-serif);
  color: var(--text-body, #59422C);
}

/* Formulaires */
.bz-form { background: #fff; border: 1px solid var(--border-card, #EFE2D2); border-radius: 22px; padding: 34px 28px; box-shadow: var(--shadow-card, 0 10px 30px rgba(86, 52, 16, .07)); }

.bz-grid2 { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .bz-grid2 { grid-template-columns: 1fr 1fr; } }

.bz-field { display: flex; flex-direction: column; gap: 7px; text-align: left; }

.bz-field label {
  font: 700 12.5px/1.3 var(--font-display, 'Archivo', sans-serif);
  color: var(--text-strong, #2B1B0E);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.bz-field label .req { color: var(--brand); }

.bz-field input, .bz-field select, .bz-field textarea {
  border: 1.5px solid var(--border-card, #EFE2D2);
  border-radius: 12px;
  padding: 13px 16px;
  font: 600 14.5px/1.4 var(--font-display, 'Archivo', sans-serif);
  color: var(--text-body, #59422C);
  background: #FFFBF6;
  outline: none;
  transition: border-color .25s ease, box-shadow .25s ease;
  width: 100%;
  box-sizing: border-box;
}

.bz-field input:focus, .bz-field select:focus, .bz-field textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(229, 115, 1, .13);
}

.bz-field .err { font: 600 12px/1.3 var(--font-display, 'Archivo', sans-serif); color: #B03A2E; display: none; }
.bz-field.invalid input, .bz-field.invalid select { border-color: #B03A2E; }
.bz-field.invalid .err { display: block; }

.bz-checks { display: grid; gap: 10px; grid-template-columns: 1fr; margin-top: 6px; }
@media (min-width: 720px) { .bz-checks { grid-template-columns: 1fr 1fr; } }

.bz-check {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid var(--border-card, #EFE2D2);
  border-radius: 12px;
  padding: 12px 14px;
  cursor: pointer;
  font: 600 13.5px/1.35 var(--font-display, 'Archivo', sans-serif);
  color: var(--text-body, #59422C);
  transition: all .2s ease;
  background: #FFFBF6;
}

.bz-check:hover { border-color: rgba(229, 115, 1, .5); }
.bz-check input { accent-color: var(--brand); width: 17px; height: 17px; }
.bz-check.on { border-color: var(--brand); background: #FFF6EA; }

.bz-actions { display: flex; justify-content: space-between; gap: 14px; margin-top: 30px; flex-wrap: wrap; }

.bz-btn {
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 15px 32px;
  font: 800 14.5px/1 var(--font-display, 'Archivo', sans-serif);
  transition: all .3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.bz-btn--primary { background: var(--brand); color: #fff; box-shadow: 0 12px 26px rgba(229, 115, 1, .32); }
.bz-btn--primary:hover { background: var(--brand-hover, #C96400); transform: translateY(-2px); }
.bz-btn--ghost { background: transparent; color: var(--text-body, #59422C); border: 2px solid var(--border-card, #EFE2D2); }
.bz-btn--ghost:hover { border-color: var(--brand); color: var(--brand); }
.bz-btn--wa { background: #1EBE5D; color: #fff; box-shadow: 0 12px 26px rgba(30, 190, 93, .3); }
.bz-btn--wa:hover { background: #17A452; transform: translateY(-2px); }
.bz-btn:disabled { opacity: .5; cursor: not-allowed; transform: none; }

/* Récapitulatif */
.bz-recap {
  background: #FFF6EA;
  border: 1.5px dashed rgba(229, 115, 1, .5);
  border-radius: 16px;
  padding: 22px;
  margin-bottom: 22px;
  text-align: left;
}

.bz-recap .row { display: flex; justify-content: space-between; gap: 16px; padding: 7px 0; font: 600 14px/1.4 var(--font-display, 'Archivo', sans-serif); color: var(--text-body, #59422C); }
.bz-recap .row b { color: var(--text-strong, #2B1B0E); text-align: right; }
.bz-recap .row.total { border-top: 1.5px solid rgba(229, 115, 1, .35); margin-top: 8px; padding-top: 12px; }
.bz-recap .row.total b { color: var(--brand); font-size: 17px; }

/* Confirmation */
.bz-confirm { text-align: center; }

.bz-confirm .big-check {
  width: 84px;
  height: 84px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #EAF7EF;
  color: #1D8348;
  font-size: 40px;
  display: grid;
  place-items: center;
  animation: en-pop-in .5s cubic-bezier(.22, .8, .3, 1);
  box-shadow: 0 0 0 12px rgba(29, 131, 72, .08);
}

.bz-ref {
  display: inline-block;
  font: 900 26px/1 var(--font-display, 'Archivo', sans-serif);
  letter-spacing: .08em;
  color: var(--brand);
  background: #FFF6EA;
  border: 1.5px dashed rgba(229, 115, 1, .5);
  border-radius: 12px;
  padding: 14px 26px;
  margin: 14px 0 6px;
}

.bz-qr {
  margin: 22px auto 8px;
  width: 172px;
  height: 172px;
  border-radius: 16px;
  border: 1px solid var(--border-card, #EFE2D2);
  padding: 10px;
  background: #fff;
  box-shadow: var(--shadow-card, 0 10px 30px rgba(86, 52, 16, .07));
}

.bz-confirm .hint { font: 500 13.5px/1.6 var(--font-display, 'Archivo', sans-serif); color: var(--text-muted, #8A6A4C); max-width: 480px; margin: 0 auto; }

/* Estimation instantanée (cotation) */
.bz-estimate {
  background: linear-gradient(140deg, #2B1B0E, #47280F);
  color: #F7E9D8;
  border-radius: 18px;
  padding: 24px;
  margin-top: 22px;
  text-align: left;
}

.bz-estimate .t { font: 800 12px/1 var(--font-display, 'Archivo', sans-serif); letter-spacing: .12em; text-transform: uppercase; color: #FFB870; margin-bottom: 10px; }
.bz-estimate .v { font: 900 26px/1.2 var(--font-display, 'Archivo', sans-serif); color: #fff; }
.bz-estimate .d { font: 500 13px/1.55 var(--font-display, 'Archivo', sans-serif); color: #E9D6BE; margin-top: 8px; }

/* ==========================================================================
   3. Suivi de demande
   ========================================================================== */

.bz-track-timeline { margin: 30px auto 0; max-width: 520px; text-align: left; }

.bz-track-step { display: flex; gap: 16px; position: relative; padding-bottom: 30px; }

.bz-track-step::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 32px;
  bottom: 0;
  width: 2.5px;
  background: #F3E7D7;
}

.bz-track-step:last-child { padding-bottom: 0; }
.bz-track-step:last-child::before { display: none; }

.bz-track-step .dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex: 0 0 32px;
  display: grid;
  place-items: center;
  background: #F3E7D7;
  color: var(--text-muted, #8A6A4C);
  font-weight: 900;
  font-size: 14px;
  z-index: 1;
}

.bz-track-step.done .dot { background: #1D8348; color: #fff; }
.bz-track-step.done::before { background: #1D8348; }
.bz-track-step.current .dot { background: var(--brand); color: #fff; animation: en-pulse-ring 2s ease-out infinite; }

.bz-track-step h5 { font: 800 15px/1.3 var(--font-display, 'Archivo', sans-serif); color: var(--text-strong, #2B1B0E); margin: 4px 0 4px; }
.bz-track-step p { font: 500 13px/1.5 var(--font-display, 'Archivo', sans-serif); color: var(--text-muted, #8A6A4C); margin: 0; }

/* ==========================================================================
   4. Galerie « Le Tchad que nous connectons » (photos Unsplash)
   ========================================================================== */

.bz-gallery {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, 1fr);
  max-width: 1200px;
  margin: 40px auto 0;
}

@media (min-width: 900px) { .bz-gallery { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 190px; } }
@media (max-width: 899px) { .bz-gallery { grid-auto-rows: 150px; } }

.bz-gal-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
}

.bz-gal-item.tall { grid-row: span 2; }
.bz-gal-item.wide { grid-column: span 2; }

.bz-gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.22, .8, .3, 1), filter .4s ease;
}

.bz-gal-item:hover img { transform: scale(1.08); }

.bz-gal-item .cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: 34px 14px 12px;
  background: linear-gradient(transparent, rgba(30, 17, 6, .78));
  color: #fff;
  font: 700 13px/1.3 var(--font-display, 'Archivo', sans-serif);
  opacity: 0;
  transform: translateY(8px);
  transition: all .35s ease;
}

.bz-gal-item:hover .cap { opacity: 1; transform: none; }

/* Image de section avec cadre chaleureux */
.bz-photo-frame {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-card-hover, 0 22px 54px rgba(86, 52, 16, .14));
  position: relative;
}

.bz-photo-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }

.bz-photo-frame .credit {
  position: absolute;
  bottom: 8px;
  right: 12px;
  font: 500 10px/1 var(--font-display, 'Archivo', sans-serif);
  color: rgba(255, 255, 255, .75);
  background: rgba(30, 17, 6, .4);
  padding: 4px 8px;
  border-radius: 999px;
}

/* ==========================================================================
   5. Assistant ILNET IA (chat statique alimenté par l'IA)
   ========================================================================== */

.ia-launcher {
  position: fixed;
  bottom: 96px;
  right: 26px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  z-index: 3200;
  background: linear-gradient(140deg, var(--brand), #B85C00);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 16px 36px rgba(229, 115, 1, .42);
  transition: transform .3s ease, box-shadow .3s ease;
  animation: en-pulse-ring 3s ease-out infinite;
}

.ia-launcher:hover { transform: translateY(-4px) scale(1.05); }

.ia-launcher svg { width: 27px; height: 27px; }

.ia-launcher .ia-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #2B1B0E;
  color: #FFC98C;
  font: 900 9.5px/1 var(--font-display, 'Archivo', sans-serif);
  letter-spacing: .06em;
  border-radius: 999px;
  padding: 5px 7px;
  border: 2px solid #FBF7F2;
}

.ia-panel {
  position: fixed;
  bottom: 96px;
  right: 26px;
  width: min(388px, calc(100vw - 32px));
  max-height: min(600px, calc(100vh - 130px));
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 30px 80px rgba(43, 27, 14, .35);
  z-index: 3300;
  display: none;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border-card, #EFE2D2);
}

.ia-panel.open { display: flex; animation: en-pop-in .3s cubic-bezier(.22, .8, .3, 1); }

.ia-head {
  background: linear-gradient(140deg, #2B1B0E, #47280F);
  color: #fff;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.ia-head .av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), #F5A623);
  display: grid;
  place-items: center;
  font: 900 15px/1 var(--font-display, 'Archivo', sans-serif);
  flex: 0 0 40px;
}

.ia-head .nm { font: 800 15px/1.2 var(--font-display, 'Archivo', sans-serif); }
.ia-head .stt { font: 600 11.5px/1.3 var(--font-display, 'Archivo', sans-serif); color: #9FE3B7; display: flex; align-items: center; gap: 6px; }
.ia-head .stt::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: #2ECC71; }
.ia-head .x { margin-left: auto; background: none; border: none; color: #E9D6BE; font-size: 22px; cursor: pointer; line-height: 1; padding: 4px; }
.ia-head .x:hover { color: #fff; }

.ia-msgs {
  flex: 1;
  overflow-y: auto;
  padding: 18px 16px 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #FBF7F2;
  min-height: 220px;
}

.ia-msg {
  max-width: 84%;
  padding: 11px 15px;
  border-radius: 16px;
  font: 500 13.5px/1.55 var(--font-display, 'Archivo', sans-serif);
  animation: en-slide-up .3s ease;
  white-space: pre-line;
}

.ia-msg.bot { background: #fff; color: var(--text-body, #59422C); border: 1px solid var(--border-card, #EFE2D2); border-bottom-left-radius: 5px; align-self: flex-start; }
.ia-msg.user { background: var(--brand); color: #fff; border-bottom-right-radius: 5px; align-self: flex-end; }

.ia-msg.bot b { color: var(--text-strong, #2B1B0E); }

.ia-msg .ia-cta {
  display: inline-block;
  margin: 8px 6px 2px 0;
  background: #FFF6EA;
  border: 1.5px solid var(--brand);
  color: var(--brand);
  font: 700 12.5px/1 var(--font-display, 'Archivo', sans-serif);
  padding: 8px 14px;
  border-radius: 999px;
  text-decoration: none;
  transition: all .25s ease;
}

.ia-msg .ia-cta:hover { background: var(--brand); color: #fff; }

.ia-typing { display: inline-flex; gap: 5px; padding: 14px 16px; }
.ia-typing i { width: 7px; height: 7px; border-radius: 50%; background: #C9A87F; animation: en-wave 1s ease-in-out infinite; }
.ia-typing i:nth-child(2) { animation-delay: .15s; }
.ia-typing i:nth-child(3) { animation-delay: .3s; }

.ia-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 8px 14px 12px;
  background: #FBF7F2;
}

.ia-chips button {
  border: 1.5px solid var(--border-card, #EFE2D2);
  background: #fff;
  color: var(--text-body, #59422C);
  font: 700 12px/1 var(--font-display, 'Archivo', sans-serif);
  padding: 9px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: all .25s ease;
}

.ia-chips button:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-1px); }

.ia-input {
  display: flex;
  gap: 10px;
  padding: 12px 14px;
  border-top: 1px solid var(--border-card, #EFE2D2);
  background: #fff;
}

.ia-input input {
  flex: 1;
  border: 1.5px solid var(--border-card, #EFE2D2);
  border-radius: 999px;
  padding: 12px 18px;
  font: 600 13.5px/1 var(--font-display, 'Archivo', sans-serif);
  outline: none;
  background: #FFFBF6;
}

.ia-input input:focus { border-color: var(--brand); }

.ia-input button {
  border: none;
  background: var(--brand);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all .25s ease;
  flex: 0 0 44px;
}

.ia-input button:hover { background: var(--brand-hover, #C96400); transform: scale(1.06); }

.ia-note {
  text-align: center;
  font: 500 10.5px/1.4 var(--font-display, 'Archivo', sans-serif);
  color: var(--text-muted, #8A6A4C);
  padding: 0 14px 10px;
  background: #fff;
}

/* ==========================================================================
   6. Divers business
   ========================================================================== */

.bz-roi-result { margin-top: 18px; }

.bz-print-only { display: none; }

@media print {
  .top-navbar, .navbar, .nav-divider, .en-ticker, .ilnet-footer-container,
  .ilnet-description-container, .cta-band, .ia-launcher, .ia-panel,
  .whatsapp-float, .en-top-btn, .en-progress, .bz-actions, .bz-stepper,
  .chatbot-toggle, .chatbot-container { display: none !important; }
  .bz-print-only { display: block; }
  body { background: #fff !important; }
  body::before, body::after { display: none !important; }
}

@media (max-width: 640px) {
  .ia-launcher { bottom: 88px; right: 16px; }
  .ia-panel { bottom: 88px; right: 16px; }
}

/* ==========================================================================
   7. Centrage du texte dans tous les boutons du site
   ========================================================================== */

.hero-btn,
.cta-band-btn,
.nav-links a.btn-ghost,
.nav-links a.btn-solid,
.bz-btn,
.en-plan-cta,
.en-speed-btn,
.en-store-btn,
.feature-text .btn,
.order-offer,
.tab-btn,
.filter-pill,
.en-tab-nav button,
.arrow-btn,
.contact-form button,
.en-eligibility button,
.chatbot-input button,
.iptvHero button,
.iptvDownload button,
.download-the-app button,
.login-card .hero-btn,
button {
  text-align: center;
}

/* Les boutons en flex doivent aussi centrer horizontalement leur contenu */
.hero-btn,
.cta-band-btn,
.nav-links a.btn-ghost,
.nav-links a.btn-solid,
.bz-btn,
.en-store-btn,
.tab-btn,
.en-tab-nav button,
.order-offer {
  justify-content: center;
}

/* ==========================================================================
   8. MENU 2 — barre de navigation premium (icônes rondes + vague orange)
   ========================================================================== */

.top-navbar, .nav-divider { display: none !important; }

.navbar.nav2 {
  position: sticky;
  top: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 4px;
  background: #fff;
  padding: 0 0 0 26px;
  min-height: 98px;
  box-shadow: 0 10px 34px rgba(86, 52, 16, .10);
  overflow: visible;
}

.navbar.nav2 .logo-link { flex: 0 0 auto; margin-right: 14px; }
.navbar.nav2 .logo { max-width: 150px; height: auto; display: block; }

/* Items à icône circulaire */
.navbar.nav2 .nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: 8px;
  margin-right: auto;
}

.n2-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  text-decoration: none;
  color: #241708;
  font: 700 12.5px/1 var(--font-display, 'Archivo', sans-serif);
  letter-spacing: .01em;
  cursor: pointer;
  white-space: nowrap;
  background: none;
  transition: color .25s ease;
}

.n2-ico {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid #EADFD2;
  background: #fff;
  display: grid;
  place-items: center;
  color: #241708;
  transition: all .3s cubic-bezier(.22, .8, .3, 1);
}

.n2-ico svg { width: 22px; height: 22px; display: block; }

.n2-item:hover { color: var(--brand); text-decoration: none; }
.n2-item:hover .n2-ico {
  border-color: var(--brand);
  color: var(--brand);
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(229, 115, 1, .22);
}

.n2-lbl { position: relative; padding-bottom: 6px; }
.n2-lbl::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 3px;
  border-radius: 2px;
  background: var(--brand);
  transform: translateX(-50%);
  transition: width .3s ease;
}

.n2-item:hover .n2-lbl::after { width: 26px; }

/* Page active : pastille orange pleine + libellé souligné */
.navbar.nav2 a.activePage { color: var(--brand); }
.navbar.nav2 a.activePage .n2-ico {
  background: linear-gradient(150deg, #F5A623, var(--brand));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 12px 26px rgba(229, 115, 1, .35);
}
.navbar.nav2 a.activePage .n2-lbl::after { width: 30px; }

/* Séparateurs verticaux fins entre les items */
.navbar.nav2 .nav-links > * + * { position: relative; }
.navbar.nav2 .nav-links > * + *::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: #F1E7DA;
}

/* Sous-menus : sous l'item, centré */
.navbar.nav2 .dropdown { position: relative; }
.navbar.nav2 .dropdown-content { top: calc(100% - 2px); left: 50%; transform: translateX(-50%); }

/* Zone orange diagonale à droite */
.n2-right {
  align-self: stretch;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 9px;
  padding: 12px 30px 12px 74px;
  clip-path: polygon(58px 0, 100% 0, 100% 100%, 0 100%);
  background:
    linear-gradient(100deg, #F7A929 0%, #EE8207 34%, #E57301 58%, rgba(210, 98, 10, .55) 82%, rgba(210, 98, 10, .35) 100%),
    url('https://images.unsplash.com/photo-1533664488202-6af66d26c44a?auto=format&fit=crop&w=700&q=60') right center / cover no-repeat;
  color: #fff;
  min-width: 380px;
}

.n2-contact { display: flex; flex-wrap: wrap; gap: 6px 22px; }

.n2-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  font: 600 13px/1.2 var(--font-display, 'Archivo', sans-serif);
  opacity: .96;
  transition: opacity .2s ease, transform .2s ease;
}

.n2-contact a:hover { opacity: 1; transform: translateX(2px); text-decoration: none; color: #fff; }
.n2-contact svg { width: 15px; height: 15px; flex: 0 0 15px; }

.n2-btns { display: flex; gap: 10px; }

.n2-espace, .n2-sub {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 22px;
  font: 800 12px/1 var(--font-display, 'Archivo', sans-serif);
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .28s ease;
  white-space: nowrap;
}

.n2-espace { background: #fff; color: var(--brand); box-shadow: 0 10px 24px rgba(63, 30, 2, .25); }
.n2-espace:hover { transform: translateY(-2px); color: var(--brand-press, #B85C00); text-decoration: none; }
.n2-espace svg { width: 15px; height: 15px; }

.n2-sub { border: 1.6px solid #fff; color: #fff; background: rgba(255, 255, 255, .08); }
.n2-sub:hover { background: #fff; color: var(--brand); transform: translateY(-2px); text-decoration: none; }
.n2-sub svg { width: 15px; height: 15px; transition: transform .25s ease; }
.n2-sub:hover svg { transform: translateX(3px); }

/* Le double des boutons pour le panneau mobile : caché sur bureau */
.navbar.nav2 .n2-mobile-cta { display: none; }

/* Ombre au défilement (classe posée par main.js) */
.navbar.nav2.is-stuck { box-shadow: 0 16px 44px rgba(86, 52, 16, .18); }

/* --- Paliers intermédiaires ------------------------------------------- */
@media (max-width: 1650px) {
  .n2-contact { display: none; }
  .n2-right { min-width: 0; gap: 0; padding-left: 66px; }
}

@media (min-width: 1100px) and (max-width: 1700px) {
  .n2-item { padding: 10px 8px; font-size: 11.5px; }
  .n2-ico { width: 44px; height: 44px; }
  .n2-ico svg { width: 19px; height: 19px; }
  .navbar.nav2 .logo { max-width: 122px; }
  .n2-espace, .n2-sub { padding: 11px 14px; font-size: 11px; }
}

/* espace serré : le bouton « Espace client » est déjà dans le menu Le Groupe */
@media (min-width: 1100px) and (max-width: 1460px) {
  .n2-espace { display: none; }
}

/* très serré : items encore plus compacts pour tenir jusqu'à 1100px */
@media (min-width: 1100px) and (max-width: 1280px) {
  .navbar.nav2 { padding-left: 14px; }
  .navbar.nav2 .logo { max-width: 104px; }
  .navbar.nav2 .logo-link { margin-right: 6px; }
  .n2-item { padding: 10px 5px; font-size: 10.5px; letter-spacing: 0; }
  .n2-ico { width: 40px; height: 40px; }
  .n2-ico svg { width: 17px; height: 17px; }
  .n2-sub { padding: 10px 12px; font-size: 10.5px; }
}

/* --- Mobile / tablette : panneau hamburger --------------------------- */
@media (max-width: 1099px) {
  .navbar.nav2 { padding: 10px 18px; min-height: 76px; }
  .n2-right { display: none; }
  .navbar.nav2 .n2-mobile-cta { display: flex; }
  .navbar.nav2 .nav-links { margin: 0; }
  .navbar.nav2 .nav-links > * + *::before { display: none; }

  .navbar.nav2 .nav-links.open .n2-item,
  .navbar.nav2 .nav-links .n2-item {
    flex-direction: row;
    justify-content: flex-start;
    gap: 12px;
    padding: 9px 12px;
    font-size: 14px;
  }

  .navbar.nav2 .nav-links .n2-ico { width: 40px; height: 40px; }
  .navbar.nav2 .nav-links .n2-ico svg { width: 17px; height: 17px; }
  .n2-lbl { padding-bottom: 0; }
  .n2-lbl::after { display: none; }
  .navbar.nav2 .dropdown-content { left: 0; transform: none; }
}


/* ==========================================================================
   9. CENTRAGE GLOBAL — titres, en-têtes et bandeaux
   ========================================================================== */

.section-head,
.page-title-text,
.partners-description,
.faq-title, .why-title, .services-title, .gallery-title,
.starlink-products-title, .advantages-title, .partners-title,
.ds-heading, .chooseus-title + *,
.ilnet-description-content { text-align: center; }

.page-title-text { margin: 0 auto; }
.page-title-text .breadcrumb { justify-content: center; }
.section-head .kicker, .page-title-text .kicker { text-align: center; }
.cta-band, .en-dark .en-center, .bz-confirm { text-align: center; }

/* ==========================================================================
   10. PZ-HERO — en-têtes de page compacts : l'essentiel visible sans scroller
   ========================================================================== */

.pz-hero {
  display: grid;
  gap: 26px;
  align-items: center;
  max-width: 1248px;
  margin: 0 auto;
  padding: 22px 24px 30px;
}

@media (min-width: 960px) {
  .pz-hero { grid-template-columns: 1.04fr .96fr; padding-top: 28px; }
}

.pz-hero .breadcrumb { justify-content: flex-start; margin-bottom: 8px; }

.pz-hero h1 {
  font: 900 clamp(24px, 2.7vw, 36px)/1.16 var(--font-display, 'Archivo', sans-serif);
  color: var(--text-strong, #2B1B0E);
  letter-spacing: -.015em;
  margin: 6px 0 10px;
  text-align: left;
}

.pz-hero h1 .acc { color: var(--brand); }

.pz-hero .lead {
  font: 500 15px/1.65 var(--font-display, 'Archivo', sans-serif);
  color: var(--text-body, #59422C);
  margin: 0;
  max-width: 540px;
  text-align: left;
}

.pz-chips { display: flex; flex-wrap: wrap; gap: 9px; margin: 16px 0 18px; }

.pz-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--border-card, #EFE2D2);
  border-radius: 999px;
  padding: 9px 15px;
  font: 700 12.5px/1 var(--font-display, 'Archivo', sans-serif);
  color: var(--text-strong, #2B1B0E);
  box-shadow: var(--shadow-card, 0 10px 30px rgba(86, 52, 16, .07));
  white-space: nowrap;
}

.pz-chip::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F5A623, var(--brand));
}

.pz-cta-row { display: flex; flex-wrap: wrap; gap: 12px; }

.pz-media { position: relative; }

.pz-media > img {
  width: 100%;
  height: clamp(230px, 30vw, 350px);
  object-fit: cover;
  border-radius: 24px;
  display: block;
  box-shadow: var(--shadow-float, 0 18px 44px rgba(86, 52, 16, .16));
}

.pz-float {
  position: absolute;
  left: -14px;
  bottom: 18px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-float, 0 18px 44px rgba(86, 52, 16, .16));
  padding: 13px 18px;
  animation: en-float-soft 5s ease-in-out infinite;
}

.pz-float .v { font: 900 20px/1.1 var(--font-display, 'Archivo', sans-serif); color: var(--brand); }
.pz-float .l { font: 700 10.5px/1.3 var(--font-display, 'Archivo', sans-serif); color: var(--text-muted, #8A6A4C); text-transform: uppercase; letter-spacing: .07em; }

.pz-live {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(30, 17, 6, .68);
  backdrop-filter: blur(4px);
  color: #fff;
  border-radius: 999px;
  padding: 8px 15px;
  font: 700 11.5px/1 var(--font-display, 'Archivo', sans-serif);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Variante mince pour les tunnels de conversion (souscription, cotation…) */
.pz-hero--slim { grid-template-columns: 1fr !important; text-align: center; padding-bottom: 8px; }
.pz-hero--slim h1, .pz-hero--slim .lead { text-align: center; margin-left: auto; margin-right: auto; }
.pz-hero--slim .breadcrumb, .pz-hero--slim .pz-chips, .pz-hero--slim .pz-cta-row { justify-content: center; }

@media (max-width: 640px) {
  .pz-hero { padding-top: 14px; }
  .pz-float { left: 8px; bottom: 10px; padding: 10px 14px; }
}

/* ==========================================================================
   11. MENU 8 ENTRÉES — densité ajustée
   ========================================================================== */

.n2-item { padding: 10px 10px; font-size: 12px; }
.n2-ico { width: 48px; height: 48px; }
.n2-ico svg { width: 20px; height: 20px; }

@media (min-width: 1700px) {
  .n2-item { padding: 10px 15px; font-size: 12.5px; }
  .n2-ico { width: 52px; height: 52px; }
}

@media (min-width: 1100px) and (max-width: 1560px) {
  .n2-item { padding: 9px 6px; font-size: 11px; }
  .n2-ico { width: 42px; height: 42px; }
  .n2-ico svg { width: 17px; height: 17px; }
  .navbar.nav2 .logo { max-width: 104px; }
  .navbar.nav2 { padding-left: 14px; }
  .n2-right { padding: 10px 18px 10px 58px; clip-path: polygon(46px 0, 100% 0, 100% 100%, 0 100%); }
  .n2-espace, .n2-sub { padding: 10px 13px; font-size: 10.5px; }
}

/* Bouton recherche rond dans la zone orange */
.n2-search {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.6px solid rgba(255, 255, 255, .85);
  background: rgba(255, 255, 255, .1);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all .28s ease;
  flex: 0 0 42px;
}

.n2-search svg { width: 17px; height: 17px; }
.n2-search:hover { background: #fff; color: var(--brand); transform: translateY(-2px) rotate(8deg); }

/* Sous-menus : ouverture au survol + animation */
@keyframes bz-dd-in {
  from { opacity: 0; transform: translateX(-50%) translateY(10px) scale(.97); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
}

@media (min-width: 1100px) {
  .navbar.nav2 .dropdown:hover > .dropdown-content,
  .navbar.nav2 .dropdown.open > .dropdown-content {
    display: flex;
    animation: bz-dd-in .28s cubic-bezier(.22, .8, .3, 1);
  }
  .navbar.nav2 .dropdown-content { min-width: 224px; padding: 10px 8px; }
  .navbar.nav2 .dropdown-content a { border-radius: 10px; transition: all .18s ease; }
  .navbar.nav2 .dropdown-content a:hover { transform: translateX(4px); }
}

/* ==========================================================================
   12. ANIMATION D'OUVERTURE (splash de marque)
   ========================================================================== */

.bz-intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(60% 50% at 80% 10%, rgba(250, 205, 148, .5) 0%, transparent 60%),
    radial-gradient(50% 45% at 10% 90%, rgba(253, 226, 196, .55) 0%, transparent 60%),
    #FBF7F2;
  transition: transform .75s cubic-bezier(.7, 0, .3, 1), opacity .4s ease .35s;
  overflow: hidden;
}

.bz-intro.done { transform: translateY(-102%); opacity: .6; pointer-events: none; }

.bz-intro::before, .bz-intro::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(229, 115, 1, .18);
  animation: bz-intro-ring 2.4s ease-out infinite;
}

.bz-intro::before { width: 340px; height: 340px; }
.bz-intro::after { width: 340px; height: 340px; animation-delay: 1.2s; }

@keyframes bz-intro-ring {
  from { transform: scale(.5); opacity: 1; }
  to   { transform: scale(2.4); opacity: 0; }
}

.bz-intro-inner { text-align: center; position: relative; }

.bz-intro-logo {
  width: 120px;
  height: auto;
  animation: bz-intro-pop .9s cubic-bezier(.34, 1.56, .64, 1) both;
  filter: drop-shadow(0 18px 34px rgba(229, 115, 1, .3));
}

@keyframes bz-intro-pop {
  0%   { transform: scale(0) rotate(-16deg); opacity: 0; }
  60%  { transform: scale(1.12) rotate(3deg); }
  100% { transform: scale(1) rotate(0); opacity: 1; }
}

.bz-intro-orbit {
  position: absolute;
  top: 50%; left: 50%;
  width: 190px; height: 190px;
  margin: -95px 0 0 -95px;
  animation: en-spin-slow 5s linear infinite;
  pointer-events: none;
}

.bz-intro-orbit i {
  position: absolute;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F5A623, var(--brand));
  box-shadow: 0 4px 10px rgba(229, 115, 1, .4);
}

.bz-intro-orbit i:nth-child(1) { top: -5px; left: 50%; }
.bz-intro-orbit i:nth-child(2) { bottom: -5px; left: 50%; width: 8px; height: 8px; }
.bz-intro-orbit i:nth-child(3) { top: 50%; left: -5px; width: 7px; height: 7px; }

.bz-intro-name {
  margin-top: 34px;
  font: 900 clamp(24px, 4vw, 40px)/1.1 var(--font-display, 'Archivo', sans-serif);
  letter-spacing: .04em;
  color: #2B1B0E;
}

.bz-intro-name b { color: var(--brand); }

.bz-intro-name span {
  display: inline-block;
  animation: bz-letter .5s cubic-bezier(.22, .8, .3, 1) both;
}

@keyframes bz-letter {
  from { opacity: 0; transform: translateY(26px) rotate(6deg); }
  to   { opacity: 1; transform: none; }
}

.bz-intro-tag {
  margin-top: 10px;
  font: 600 13.5px/1.4 var(--font-display, 'Archivo', sans-serif);
  color: #8A6A4C;
  letter-spacing: .12em;
  text-transform: uppercase;
  animation: bz-letter .6s .85s both;
}

.bz-intro-bar {
  width: 220px;
  height: 5px;
  margin: 26px auto 0;
  border-radius: 4px;
  background: #F0E3D2;
  overflow: hidden;
}

.bz-intro-bar i {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 4px;
  background: linear-gradient(90deg, #F5A623, var(--brand));
  animation: bz-intro-fill 1.5s cubic-bezier(.65, 0, .35, 1) .15s forwards;
}

@keyframes bz-intro-fill { to { width: 100%; } }

/* Entrée de page (après le splash ou entre les pages) */
@keyframes bz-page-in {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}

body.bz-enter #root { animation: bz-page-in .6s cubic-bezier(.22, .8, .3, 1) both; }
body.bz-leaving #root { opacity: 0; transition: opacity .22s ease; }

/* ==========================================================================
   13. Toasts « preuve sociale »
   ========================================================================== */

.bz-toast {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 3500;
  background: #fff;
  border: 1px solid var(--border-card, #EFE2D2);
  border-left: 4px solid var(--brand);
  border-radius: 16px;
  box-shadow: var(--shadow-float, 0 18px 44px rgba(86, 52, 16, .2));
  padding: 13px 40px 13px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 330px;
  transform: translateX(-120%);
  transition: transform .5s cubic-bezier(.22, .8, .3, 1);
}

.bz-toast.show { transform: none; }

.bz-toast .em {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: #FFF3E2;
  display: grid;
  place-items: center;
  font-size: 19px;
  flex: 0 0 40px;
}

.bz-toast .tt { font: 700 13px/1.35 var(--font-display, 'Archivo', sans-serif); color: #2B1B0E; }
.bz-toast .ts { font: 600 11px/1.3 var(--font-display, 'Archivo', sans-serif); color: #8A6A4C; margin-top: 3px; }

.bz-toast .x {
  position: absolute;
  top: 6px; right: 10px;
  border: none; background: none;
  color: #B49877;
  font-size: 16px;
  cursor: pointer;
  padding: 2px;
}

@media (max-width: 640px) { .bz-toast { display: none; } }

/* ==========================================================================
   14. Palette de recherche (Ctrl+K)
   ========================================================================== */

.bz-pal-overlay {
  position: fixed;
  inset: 0;
  z-index: 6000;
  background: rgba(30, 17, 6, .5);
  backdrop-filter: blur(4px);
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 12vh 18px 18px;
}

.bz-pal-overlay.open { display: flex; animation: en-pop-in .2s ease; }

.bz-pal {
  width: min(560px, 100%);
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 40px 90px rgba(30, 17, 6, .45);
  overflow: hidden;
  animation: en-slide-up .3s cubic-bezier(.22, .8, .3, 1);
}

.bz-pal-head { display: flex; align-items: center; gap: 12px; padding: 16px 20px; border-bottom: 1px solid #F3E9DC; }
.bz-pal-head svg { width: 19px; height: 19px; color: var(--brand); flex: 0 0 19px; }

.bz-pal-head input {
  flex: 1;
  border: none;
  outline: none;
  font: 600 16px/1.3 var(--font-display, 'Archivo', sans-serif);
  color: #2B1B0E;
  background: none;
}

.bz-pal-head kbd {
  font: 700 10.5px/1 var(--font-display, 'Archivo', sans-serif);
  background: #F5EBDD;
  color: #8A6A4C;
  border-radius: 6px;
  padding: 5px 8px;
}

.bz-pal-list { max-height: 380px; overflow-y: auto; padding: 8px; }

.bz-pal-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 11px 13px;
  border-radius: 12px;
  text-decoration: none;
  cursor: pointer;
}

.bz-pal-item .ic {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: #FFF3E2;
  display: grid;
  place-items: center;
  font-size: 16px;
  flex: 0 0 36px;
}

.bz-pal-item .t { font: 700 14px/1.3 var(--font-display, 'Archivo', sans-serif); color: #2B1B0E; }
.bz-pal-item .s { font: 500 11.5px/1.3 var(--font-display, 'Archivo', sans-serif); color: #8A6A4C; margin-top: 2px; }

.bz-pal-item:hover, .bz-pal-item.sel { background: #FFF6EA; }
.bz-pal-item.sel { outline: 1.5px solid rgba(229, 115, 1, .4); }

.bz-pal-empty { text-align: center; padding: 26px; font: 600 13.5px/1.5 var(--font-display, 'Archivo', sans-serif); color: #8A6A4C; }

/* ==========================================================================
   15. Confettis de célébration
   ========================================================================== */

.bz-confetti-zone { position: relative; overflow: visible; }

.bz-confetti {
  position: absolute;
  top: -10px;
  font-size: 18px;
  animation: bz-confetti-fall linear forwards;
  pointer-events: none;
  z-index: 5;
}

@keyframes bz-confetti-fall {
  0%   { transform: translateY(-20px) rotate(0) scale(1); opacity: 1; }
  100% { transform: translateY(420px) rotate(560deg) scale(.75); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .bz-intro { display: none !important; }
  .bz-confetti { display: none !important; }
  body.bz-enter #root { animation: none; }
}

/* ==========================================================================
   16. PANIER E-COMMERCE — fab, tiroir, boutons d'ajout
   ========================================================================== */

.bz-add {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1.6px solid var(--brand);
  background: #fff;
  color: var(--brand);
  font: 800 12px/1 var(--font-display, 'Archivo', sans-serif);
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: all .25s ease;
  margin: 10px auto 2px;
}

.bz-add:hover { background: var(--brand); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 22px rgba(229, 115, 1, .3); }
.bz-add.added { background: #1D8348; border-color: #1D8348; color: #fff; }

.bz-cart-fab {
  position: fixed;
  bottom: 166px;
  right: 26px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  z-index: 3200;
  background: #2B1B0E;
  color: #FFC98C;
  display: grid;
  place-items: center;
  box-shadow: 0 16px 36px rgba(43, 27, 14, .4);
  transition: transform .3s ease;
}

.bz-cart-fab:hover { transform: translateY(-4px) scale(1.05); }
.bz-cart-fab svg { width: 24px; height: 24px; }

.bz-cart-fab .ct {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font: 900 11px/22px var(--font-display, 'Archivo', sans-serif);
  text-align: center;
  padding: 0 5px;
  border: 2px solid #FBF7F2;
}

.bz-cart-fab.bump { animation: bz-bump .45s cubic-bezier(.34, 1.56, .64, 1); }
@keyframes bz-bump { 40% { transform: scale(1.25) rotate(-8deg); } }

.bz-drawer-ov {
  position: fixed;
  inset: 0;
  background: rgba(30, 17, 6, .45);
  backdrop-filter: blur(3px);
  z-index: 6500;
  display: none;
}

.bz-drawer-ov.open { display: block; animation: en-pop-in .2s ease; }

.bz-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(410px, 100vw);
  background: #FBF7F2;
  z-index: 6600;
  transform: translateX(105%);
  transition: transform .45s cubic-bezier(.22, .8, .3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -30px 0 70px rgba(30, 17, 6, .3);
}

.bz-drawer.open { transform: none; }

.bz-drawer-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: linear-gradient(140deg, #2B1B0E, #47280F);
  color: #fff;
  font: 800 16px/1.2 var(--font-display, 'Archivo', sans-serif);
}

.bz-drawer-head .n { background: var(--brand); border-radius: 999px; padding: 4px 10px; font-size: 12px; }
.bz-drawer-head .x { margin-left: auto; background: none; border: none; color: #E9D6BE; font-size: 24px; cursor: pointer; line-height: 1; }

.bz-drawer-items { flex: 1; overflow-y: auto; padding: 14px; display: flex; flex-direction: column; gap: 10px; }

.bz-ci {
  background: #fff;
  border: 1px solid var(--border-card, #EFE2D2);
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: en-slide-up .3s ease;
}

.bz-ci .inf { flex: 1; min-width: 0; }
.bz-ci .t { font: 800 13px/1.3 var(--font-display, 'Archivo', sans-serif); color: #2B1B0E; }
.bz-ci .p { font: 700 12px/1.3 var(--font-display, 'Archivo', sans-serif); color: var(--brand); margin-top: 3px; }

.bz-qty { display: inline-flex; align-items: center; gap: 8px; }
.bz-qty button {
  width: 26px; height: 26px;
  border-radius: 8px;
  border: 1.4px solid var(--border-card, #EFE2D2);
  background: #FFFBF6;
  color: #59422C;
  font: 800 14px/1 var(--font-display, 'Archivo', sans-serif);
  cursor: pointer;
  transition: all .2s ease;
}
.bz-qty button:hover { border-color: var(--brand); color: var(--brand); }
.bz-qty .q { font: 800 13px/1 var(--font-display, 'Archivo', sans-serif); min-width: 18px; text-align: center; }

.bz-ci .rm { border: none; background: none; color: #B49877; cursor: pointer; font-size: 17px; padding: 4px; }
.bz-ci .rm:hover { color: #B03A2E; }

.bz-drawer-empty { text-align: center; padding: 50px 24px; font: 600 14px/1.6 var(--font-display, 'Archivo', sans-serif); color: #8A6A4C; }
.bz-drawer-empty .big { font-size: 42px; margin-bottom: 12px; }

.bz-drawer-foot { padding: 16px 18px 18px; background: #fff; border-top: 1px solid var(--border-card, #EFE2D2); }
.bz-tot { display: flex; justify-content: space-between; font: 700 13.5px/1.5 var(--font-display, 'Archivo', sans-serif); color: #59422C; padding: 3px 0; }
.bz-tot b { color: #2B1B0E; }
.bz-tot.main b { color: var(--brand); font-size: 17px; }
.bz-drawer-foot .bz-btn { width: 100%; box-sizing: border-box; margin-top: 10px; justify-content: center; }

/* Page panier : deux colonnes */
.bz-checkout {
  display: grid;
  gap: 26px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 24px 70px;
  align-items: start;
}

@media (min-width: 980px) { .bz-checkout { grid-template-columns: 1.15fr .85fr; } }

.bz-co-items { display: flex; flex-direction: column; gap: 12px; }

/* ==========================================================================
   17. CONSEILLER IA (wizard de recommandation)
   ========================================================================== */

.bz-reco-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: none;
  cursor: pointer;
  background: linear-gradient(120deg, #2B1B0E, #4A2A0C);
  color: #FFC98C;
  font: 800 13.5px/1 var(--font-display, 'Archivo', sans-serif);
  padding: 14px 24px;
  border-radius: 999px;
  transition: all .3s ease;
  box-shadow: 0 12px 26px rgba(43, 27, 14, .3);
}

.bz-reco-btn:hover { transform: translateY(-2px); color: #fff; }

.bz-reco { max-width: 460px; width: 100%; }

.bz-reco-q { font: 800 17px/1.4 var(--font-display, 'Archivo', sans-serif); color: #2B1B0E; margin: 4px 0 16px; text-align: center; }

.bz-reco-opts { display: grid; gap: 10px; }

.bz-reco-opt {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1.6px solid var(--border-card, #EFE2D2);
  background: #FFFBF6;
  border-radius: 14px;
  padding: 13px 16px;
  cursor: pointer;
  font: 700 13.5px/1.35 var(--font-display, 'Archivo', sans-serif);
  color: #59422C;
  transition: all .2s ease;
  text-align: left;
}

.bz-reco-opt:hover { border-color: var(--brand); transform: translateX(4px); background: #FFF6EA; }
.bz-reco-opt .ic { font-size: 19px; }

.bz-reco-prog { display: flex; gap: 6px; justify-content: center; margin-bottom: 18px; }
.bz-reco-prog i { width: 34px; height: 4.5px; border-radius: 3px; background: #F0E3D2; transition: background .3s ease; }
.bz-reco-prog i.on { background: var(--brand); }

.bz-reco-think { text-align: center; padding: 26px 0; }
.bz-reco-think .dots { display: inline-flex; gap: 7px; }
.bz-reco-think .dots i { width: 10px; height: 10px; border-radius: 50%; background: var(--brand); animation: en-wave 1s ease-in-out infinite; }
.bz-reco-think .dots i:nth-child(2) { animation-delay: .15s; }
.bz-reco-think .dots i:nth-child(3) { animation-delay: .3s; }

.bz-reco-res { text-align: center; animation: en-pop-in .4s ease; }
.bz-reco-res .badge {
  display: inline-block;
  background: linear-gradient(120deg, #2B1B0E, #4A2A0C);
  color: #FFC98C;
  font: 800 10.5px/1 var(--font-display, 'Archivo', sans-serif);
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.bz-reco-res h4 { font: 900 22px/1.25 var(--font-display, 'Archivo', sans-serif); color: #2B1B0E; margin: 0 0 4px; }
.bz-reco-res .pr { font: 800 16px/1.3 var(--font-display, 'Archivo', sans-serif); color: var(--brand); }
.bz-reco-res .why {
  background: #FFF6EA;
  border: 1.5px dashed rgba(229, 115, 1, .45);
  border-radius: 14px;
  padding: 14px 16px;
  font: 500 13px/1.6 var(--font-display, 'Archivo', sans-serif);
  color: #59422C;
  margin: 14px 0 18px;
  text-align: left;
}

/* ==========================================================================
   18. BACKOFFICE
   ========================================================================== */

.bo-wrap { max-width: 1220px; margin: 0 auto; padding: 20px 24px 80px; }

.bo-tiles { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); margin-bottom: 26px; }

.bo-tile {
  background: #fff;
  border: 1px solid var(--border-card, #EFE2D2);
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: var(--shadow-card, 0 10px 30px rgba(86, 52, 16, .07));
}

.bo-tile .v { font: 900 26px/1.1 var(--font-display, 'Archivo', sans-serif); color: var(--brand); }
.bo-tile .l { font: 700 11.5px/1.4 var(--font-display, 'Archivo', sans-serif); color: #8A6A4C; text-transform: uppercase; letter-spacing: .07em; margin-top: 5px; }

.bo-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; align-items: center; }
.bo-bar .sp { flex: 1; }

.bo-table-wrap { overflow-x: auto; background: #fff; border: 1px solid var(--border-card, #EFE2D2); border-radius: 18px; box-shadow: var(--shadow-card, 0 10px 30px rgba(86, 52, 16, .07)); }

.bo-table { width: 100%; border-collapse: collapse; min-width: 860px; font: 500 13.5px/1.5 var(--font-display, 'Archivo', sans-serif); color: #59422C; }
.bo-table th { background: #2B1B0E; color: #FBEBD8; font-weight: 800; font-size: 11.5px; text-transform: uppercase; letter-spacing: .07em; padding: 13px 14px; text-align: left; white-space: nowrap; }
.bo-table td { padding: 12px 14px; border-top: 1px solid #F5EBDD; vertical-align: middle; }
.bo-table tr:hover td { background: #FFF9F0; }

.bo-new { display: inline-block; background: var(--brand); color: #fff; font: 800 9.5px/1 var(--font-display, 'Archivo', sans-serif); padding: 4px 8px; border-radius: 999px; letter-spacing: .08em; margin-left: 7px; vertical-align: middle; }

.bo-type { display: inline-block; font: 800 10.5px/1 var(--font-display, 'Archivo', sans-serif); padding: 6px 10px; border-radius: 999px; letter-spacing: .05em; }
.bo-type.souscription { background: #EAF7EF; color: #1D8348; }
.bo-type.commande { background: #FFF3E2; color: #B85C00; }
.bo-type.devis, .bo-type.cotation { background: #EDF2FB; color: #2C5AA0; }
.bo-type.ticket { background: #FDEDEC; color: #B03A2E; }
.bo-type.rdv, .bo-type.rappel { background: #F4ECFB; color: #7D3C98; }

.bo-table select {
  border: 1.4px solid var(--border-card, #EFE2D2);
  border-radius: 999px;
  padding: 7px 12px;
  font: 700 12px/1 var(--font-display, 'Archivo', sans-serif);
  color: #59422C;
  background: #FFFBF6;
  cursor: pointer;
}

.bo-empty { text-align: center; padding: 46px; font: 600 14px/1.6 var(--font-display, 'Archivo', sans-serif); color: #8A6A4C; }
