/* ════════════════════════════════════════════════════════════
   HERO SECTION — Vidéo plein écran + texte centré
   ════════════════════════════════════════════════════════════ */

.bt-hero {
  position: relative;
  margin-left: calc(-50vw + 50%);
  width: 100vw;
  min-height: 60vh;
  min-height: 60svh;
  max-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0c120e;
}

/* ── Vidéo de fond ── */
.bt-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

/* Respect de la préférence "réduire les animations" */
@media (prefers-reduced-motion: reduce) {
  .bt-hero__video {
    display: none;
  }
}

/* ── Overlay sombre pour la lisibilité du texte ── */
.bt-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(8, 12, 9, 0.5) 0%,
    rgba(8, 12, 9, 0.42) 45%,
    rgba(8, 12, 9, 0.68) 100%
  );
}

/* ── Contenu centré ── */
.bt-hero__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 80px 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  animation: heroFadeUp 0.9s var(--ease) both;
}

/* Pill (badge) */
.bt-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: var(--space-sm) 18px;
  border-radius: 100px;
  margin-bottom: var(--space-xl);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.bt-dot {
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

/* Titre principal */
.bt-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: var(--weight-extrabold);
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0 0 16px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.bt-title em {
  color: var(--gold);
  font-style: italic;
}

/* Sous-titre */
.bt-sub {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin: 0 auto var(--space-xl);
  max-width: 480px;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.3);
}

/* Actions (boutons) */
.bt-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-xl);
}

.bt-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: var(--weight-semibold);
  padding: 16px 32px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.22s var(--ease);
  cursor: pointer;
  border: none;
  line-height: 1;
}

.bt-btn-gold {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.bt-btn-gold:hover {
  background: var(--gold-dark);
  color: var(--black);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
}

.bt-btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.65);
}

.bt-btn-ghost:hover {
  border-color: #fff;
  background: #fff;
  color: var(--black);
  text-decoration: none;
}

.bt-arrow {
  width: 15px;
  height: 15px;
  transition: transform 0.18s ease;
}

.bt-btn-gold:hover .bt-arrow {
  transform: translateX(3px);
}

/* Badges (tags) */
.bt-badges-row {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

.bt-tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: var(--weight-semibold);
  padding: 7px 16px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.bt-tag-green {
  background: rgba(45, 74, 53, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
}

.bt-tag-gold {
  background: rgba(232, 160, 32, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
}

/* ════════════════════════════════════════════════════════════
   BARRE DU BAS — stats + paiements (discrète, sur la vidéo)
   ════════════════════════════════════════════════════════════ */

.bt-hero__bottom {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1160px;
  margin-top: auto;
  padding: 0 32px 36px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  animation: heroFadeUp 1s var(--ease) 0.25s both;
}

/* Stats */
.bt-stats {
  display: flex;
  align-items: center;
  gap: 0;
  padding: var(--space-md) var(--space-lg);
  background: rgba(10, 16, 12, 0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.bt-stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  padding: 0 24px 0 0;
}

.bt-stat-icon {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}

.bt-stat-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold);
  fill: none;
}

.bt-stat-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: var(--weight-extrabold);
  color: #fff;
  line-height: 1;
  letter-spacing: -0.03em;
}

.bt-stat-label {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

.bt-stat-sep {
  width: 1px;
  height: 42px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
  margin: 0 24px 0 0;
  align-self: center;
}

/* Paiements sécurisés */
.bt-payments {
  padding: 14px 16px;
  background: rgba(10, 16, 12, 0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.bt-payments__header {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: var(--weight-semibold);
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.02em;
}

.bt-payments__header svg {
  width: 13px;
  height: 13px;
  stroke: var(--gold);
  fill: none;
  flex-shrink: 0;
}

.bt-payments__icons {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
}

/* Badge générique */
.bt-pay {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 26px;
  padding: 0 10px;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: var(--white);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--black);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  white-space: nowrap;
}

.bt-pay--visa {
  color: #1a1f71;
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.01em;
}

.bt-pay--mc {
  padding: 0 8px;
  gap: 0;
  overflow: visible;
}
.bt-pay-mc-left,
.bt-pay-mc-right {
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
}
.bt-pay-mc-left  { background: #EB001B; }
.bt-pay-mc-right { background: #F79E1B; margin-left: -6px; }

.bt-pay--amex {
  color: #016fd0;
  font-size: 9px;
  letter-spacing: 0.06em;
}

.bt-pay--apple {
  background: #000;
  color: #fff;
  border-color: #000;
  font-size: 10px;
  letter-spacing: 0;
}

.bt-pay--momo {
  background: #FFCC00;
  color: #000;
  border-color: #FFCC00;
  font-size: 9.5px;
}

.bt-pay--moov {
  background: #003087;
  color: #fff;
  border-color: #003087;
  font-size: 9.5px;
}

/* Scroll hint */
.bt-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 3;
  animation: heroFadeUp 1.2s var(--ease) 0.6s both;
}

.bt-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7), transparent);
  animation: scrollDown 2s ease infinite;
}

@keyframes scrollDown {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE HERO
   ════════════════════════════════════════════════════════════ */

@media (max-width: 1100px) {
  .bt-hero__bottom {
    padding: 0 24px 32px;
  }
  .bt-stat-item {
    padding: 0 18px 0 0;
  }
  .bt-stat-sep {
    margin: 0 18px 0 0;
  }
}

@media (max-width: 960px) {
  .bt-title {
    font-size: clamp(38px, 6.5vw, 60px);
  }
  .bt-sub {
    font-size: 16px;
  }
  .bt-btn {
    padding: 14px 28px;
    font-size: 13.5px;
  }
  /* Le scroll-hint gêne entre les deux blocs → on le masque tôt */
  .bt-scroll-hint {
    display: none;
  }
}

@media (max-width: 800px) {
  .bt-hero {
    min-height: 88vh;
    min-height: 88svh;
  }
  .bt-hero__content {
    padding: 100px 20px 32px;
  }
  .bt-hero__bottom {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 0 20px 28px;
  }
  .bt-stats {
    justify-content: center;
  }
  .bt-stat-item {
    align-items: center;
    text-align: center;
  }
  .bt-payments {
    align-items: center;
  }
  .bt-payments__icons {
    justify-content: center;
  }
  .bt-title {
    font-size: clamp(34px, 8vw, 52px);
  }
}

@media (max-width: 640px) {
  .bt-title {
    font-size: clamp(30px, 8.5vw, 44px);
  }
  .bt-sub {
    font-size: 14.5px;
  }
  .bt-stats {
    padding: var(--space-md);
  }
  .bt-stat-num {
    font-size: 18px;
  }
  .bt-stat-label {
    font-size: 10px;
  }
  .bt-stat-item {
    padding: 0 12px 0 0;
  }
  .bt-stat-sep {
    margin: 0 12px 0 0;
    height: 34px;
  }
  .bt-payments__icons {
    gap: 5px;
  }
  .bt-pay {
    height: 22px;
    padding: 0 7px;
    font-size: 9px;
  }
  .bt-actions {
    gap: 10px;
  }
  .bt-btn {
    padding: 12px 24px;
    font-size: 13px;
  }
  .bt-pill {
    font-size: 10px;
    padding: var(--space-sm) 14px;
  }
}

@media (max-width: 480px) {
  .bt-hero__content {
    padding: 88px 16px 28px;
  }
  .bt-title {
    font-size: clamp(27px, 8vw, 38px);
  }
  .bt-sub {
    font-size: 13.5px;
  }
  .bt-btn {
    padding: 11px 20px;
    font-size: 12.5px;
  }
  .bt-pill {
    font-size: 9px;
    padding: 5px 12px;
  }
  .bt-actions {
    gap: 8px;
  }
  /* Sur petit mobile, on allège : paiements masqués (repris ailleurs sur le site) */
  .bt-payments {
    display: none;
  }
}

@media (max-width: 390px) {
  .bt-title {
    font-size: clamp(25px, 7.5vw, 34px);
  }
  .bt-sub {
    font-size: 13px;
  }
  .bt-btn {
    padding: 10px 18px;
    font-size: 12px;
  }
  .bt-stat-num {
    font-size: 16px;
  }
}
