/* =========================
   HERO VIDEO - RESPONSIVE
   Mobile → Tablette → Laptop → Desktop
   ========================= */

.bn-hero {
  width: 100%;
  margin: 0;
}

/* Conteneur vidéo avec courbe */
.bn-hero__media {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000;
  
  /* Hauteur adaptative */
  height: clamp(480px, 65vh, 820px);
  
  /* Courbe élégante */
  border-radius: 0 0 50% 50% / 0 0 16% 16%;
  box-shadow: 0 14px 40px rgba(0,0,0,0.12);
}

/* Vidéo en plein cadre */
.bn-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translateZ(0);
}

/* Overlay sombre pour lisibilité */
.bn-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 700px at 15% 35%, rgba(0,0,0,0.75), rgba(0,0,0,0.25) 80%),
    linear-gradient(180deg, rgba(0,0,0,0.50), rgba(0,0,0,0.35) 80%, rgba(0,0,0,0.45));
}

/* Contenu centré */
.bn-hero__content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  color: #fff;
  padding-top: clamp(30px, 5vh, 80px);
  padding-bottom: clamp(40px, 8vh, 130px);
}

.bn-hero__kicker {
  margin: 0;
  display: inline-flex;
  width: fit-content;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.18);
  font-weight: 750;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

.bn-hero__title {
  margin: 0;
  max-width: 26ch;
  line-height: 1.05;
  font-weight: 900;
  color: #fff;
  font-size: clamp(2rem, 3.5vw, 3.3rem);
  letter-spacing: -0.5px;
  text-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.bn-hero__lead {
  margin: 0;
  max-width: 58ch;
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  color: rgba(255,255,255,0.92);
  line-height: 1.5;
  text-shadow: 0 8px 24px rgba(0,0,0,0.28);
}

.bn-hero__actions {
  margin-top: 0.6rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.bn-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  background: var(--couleur-principale);
  color: #fff;
  font-weight: 900;
  font-size: 1rem;
  box-shadow: 0 12px 30px rgba(0,0,0,0.16);
  transition: all 0.2s ease;
  text-decoration: none;
}

.bn-hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.22);
  background: #178f8a;
  color: #fff;
}

.bn-hero__sound {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.35);
  color: #0f2f2e;
  font-weight: 900;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.bn-hero__sound:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.18);
  background: #fff;
}

/* =========================
   MOBILE (320px - 600px)
   ========================= */
@media (max-width: 600px) {
  .bn-hero__media {
    height: 500px;
    border-radius: 0 0 50% 50% / 0 0 20% 20%;
  }

  .bn-hero__content {
    padding-top: 25px;
    padding-bottom: 60px;
    gap: 0.8rem;
  }

  .bn-hero__kicker {
    font-size: 0.88rem;
    padding: 0.35rem 0.7rem;
  }

  .bn-hero__title {
    max-width: 18ch;
    font-size: 1.9rem;
    line-height: 1.08;
  }

  .bn-hero__lead {
    max-width: 38ch;
    font-size: 0.98rem;
  }

  .bn-hero__actions {
    margin-top: 0.5rem;
    gap: 0.6rem;
    width: 100%;
    flex-direction: column;
  }

  .bn-hero__cta,
  .bn-hero__sound {
    width: 100%;
    padding: 0.95rem 1.2rem;
  }
}

/* =========================
   TABLETTE (601px - 1024px)
   ========================= */
@media (min-width: 601px) and (max-width: 1024px) {
  .bn-hero__media {
    height: clamp(540px, 60vh, 680px);
    border-radius: 0 0 50% 50% / 0 0 18% 18%;
  }

  .bn-hero__content {
    padding-top: 40px;
    padding-bottom: 80px;
  }

  .bn-hero__title {
    max-width: 24ch;
    font-size: clamp(2.2rem, 3.8vw, 2.8rem);
  }

  .bn-hero__lead {
    max-width: 50ch;
    font-size: 1.05rem;
  }

  .bn-hero__actions {
    gap: 0.75rem;
  }

  .bn-hero__cta,
  .bn-hero__sound {
    width: auto;
    min-width: 180px;
  }
}

/* =========================
   LAPTOP (1025px - 1599px)
   ========================= */
@media (min-width: 1025px) and (max-width: 1599px) {
  .bn-hero__media {
    height: clamp(600px, 68vh, 760px);
    border-radius: 0 0 50% 50% / 0 0 17% 17%;
  }

  .bn-hero__content {
    padding-top: 60px;
    padding-bottom: 110px;
  }

  .bn-hero__title {
    max-width: 26ch;
    font-size: clamp(2.5rem, 3.2vw, 3rem);
  }

  .bn-hero__lead {
    max-width: 56ch;
    font-size: 1.12rem;
  }
}

/* =========================
   GRAND ÉCRAN (1600px+)
   ========================= */
@media (min-width: 1600px) {
  .bn-hero__media {
    height: 840px;
    border-radius: 0 0 50% 50% / 0 0 15% 15%;
  }

  .bn-hero__content {
    padding-top: 85px;
    padding-bottom: 150px;
  }

  .bn-hero__title {
    font-size: 3.4rem;
    max-width: 24ch;
  }

  .bn-hero__lead {
    font-size: 1.2rem;
    max-width: 64ch;
  }
}

/* =========================
   SECTION INTRO
   ========================= */

.bn-intro {
  padding: clamp(40px, 6vw, 100px) 0;
}

.bn-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(20px, 3vw, 40px);
  align-items: stretch;
}

.bn-intro__photo {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 55px rgba(0,0,0,0.12);
  background: #f5f5f5;
}

.bn-intro__photo img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  display: block;
}

.bn-intro__card {
  border-radius: 28px;
  padding: clamp(28px, 4vw, 48px);
  box-shadow: 0 18px 60px rgba(0,0,0,0.10);
  
  background:
    radial-gradient(900px 500px at 20% 10%, rgba(210,160,255,0.60), transparent 60%),
    radial-gradient(900px 500px at 80% 0%, rgba(255,190,220,0.50), transparent 55%),
    linear-gradient(180deg, rgba(235,215,255,0.75), rgba(255,255,255,0.90));

  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.bn-intro__kicker {
  margin: 0 0 1rem;
  font-weight: 800;
  color: rgba(20,20,20,0.75);
  font-size: clamp(1rem, 1.1vw, 1.08rem);
}

.bn-intro__title {
  margin: 0 0 1.2rem;
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
  line-height: 1.1;
  font-weight: 900;
  color: rgba(20,20,20,0.90);
  letter-spacing: -0.3px;
}

.bn-intro__text {
  margin: 0 auto;
  max-width: 52ch;
  font-size: clamp(1.02rem, 1.15vw, 1.14rem);
  color: rgba(20,20,20,0.78);
  line-height: 1.65;
}

.bn-intro__actions {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
}

.bn-intro__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  background: var(--couleur-principale);
  color: #fff;
  font-weight: 900;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 14px 40px rgba(0,0,0,0.14);
  transition: all 0.2s ease;
}

.bn-intro__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 55px rgba(0,0,0,0.18);
  background: #178f8a;
}

/* RESPONSIVE INTRO */

/* Tablette */
@media (min-width: 601px) and (max-width: 1024px) {
  .bn-intro__grid {
    grid-template-columns: 1fr 1.3fr;
    gap: 24px;
  }

  .bn-intro__photo img {
    min-height: 340px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .bn-intro {
    padding: 35px 0 45px;
  }

  .bn-intro__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .bn-intro__photo img {
    min-height: 280px;
  }

  .bn-intro__card {
    text-align: left;
    align-items: flex-start;
  }

  .bn-intro__text {
    margin: 0;
    max-width: 100%;
  }

  .bn-intro__actions {
    width: 100%;
    justify-content: flex-start;
  }

  .bn-intro__btn {
    width: 100%;
  }
}

/* Grand écran */
@media (min-width: 1600px) {
  .bn-intro__grid {
    grid-template-columns: 1fr 1.8fr;
    gap: 48px;
  }

  .bn-intro__card {
    padding: 56px;
  }

  .bn-intro__photo img {
    min-height: 460px;
  }
}

/* =========================
   SECTION POURQUOI L'HYPNOSE
   ========================= */

.bn-why {
  position: relative;
  overflow: hidden;
  padding: clamp(50px, 8vw, 100px) 0;
}

.bn-why__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  filter: saturate(0.95);
}

.bn-why::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 700px at 50% 20%, rgba(0,0,0,0.55), rgba(0,0,0,0.70)),
    linear-gradient(180deg, rgba(0,0,0,0.52), rgba(0,0,0,0.75));
  z-index: 0;
}

.bn-why__inner {
  position: relative;
  z-index: 1;
}

.bn-why__head {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: center;
  margin-bottom: clamp(28px, 4vw, 44px);
}

.bn-why__title {
  margin: 0;
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.2px;
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  text-align: center;
  text-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.bn-why__subtitle {
  margin: clamp(12px, 2vw, 18px) 0 0;
  color: rgba(255,255,255,0.92);
  font-weight: 600;
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  text-align: center;
  text-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

.bn-why__line {
  flex: 1 1 100px;
  max-width: 280px;
  height: 1px;
  background: rgba(255,255,255,0.50);
  border-radius: 10px;
}

.bn-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.5vw, 32px);
  align-items: stretch;
  justify-items: center;
}

.bn-why__card {
  width: 100%;
  max-width: 340px;
  border-radius: 24px;
  padding: clamp(24px, 3vw, 38px);
  text-align: center;

  background: rgba(26,159,153,0.88);
  border: 1px solid rgba(255,255,255,0.20);
  box-shadow: 0 22px 70px rgba(0,0,0,0.28);

  transition: all 0.2s ease;
}

.bn-why__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 90px rgba(0,0,0,0.36);
  background: rgba(26,159,153,0.95);
}

.bn-why__icon {
  display: block;
  margin: 0 auto 16px;
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,0.18));
}

.bn-why__label {
  margin: 0;
  color: rgba(0,0,0,0.90);
  font-weight: 900;
  font-size: clamp(1.05rem, 1.1vw, 1.12rem);
  line-height: 1.3;
}

.bn-why__cta {
  margin-top: clamp(28px, 4vw, 40px);
  display: flex;
  justify-content: center;
}

.bn-why__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  border-radius: 16px;
  background: var(--couleur-secondaire);
  color: rgba(0,0,0,0.88);
  font-weight: 950;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 18px 55px rgba(0,0,0,0.22);
  transition: all 0.2s ease;
}

.bn-why__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 70px rgba(0,0,0,0.28);
}

/* RESPONSIVE POURQUOI */

/* Tablette */
@media (min-width: 601px) and (max-width: 1024px) {
  .bn-why__grid {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 500px;
    margin: 0 auto;
  }

  .bn-why__line {
    max-width: 180px;
  }

  .bn-why__card {
    max-width: 100%;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .bn-why {
    padding: 45px 0 55px;
  }

  .bn-why__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .bn-why__line {
    display: none;
  }

  .bn-why__head {
    gap: 0;
  }

  .bn-why__card {
    max-width: 100%;
  }

  .bn-why__btn {
    width: 100%;
    max-width: 100%;
  }
}

/* =========================
   MAP BLOCK
   ========================= */

.bn-mapblock {
  padding: clamp(40px, 6vw, 90px) 0;
}

.bn-mapblock__wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: clamp(24px, 4vw, 56px);
  padding: clamp(28px, 4vw, 52px);
  border-radius: 32px;

  background:
    radial-gradient(1200px 700px at 15% 35%, rgba(26,159,153,0.35), transparent 60%),
    linear-gradient(90deg, rgba(26,159,153,0.92), rgba(255,255,255,0.95));

  box-shadow: 0 22px 70px rgba(0,0,0,0.15);
}

.bn-mapblock__map {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(0,0,0,0.20);
  border: 4px solid rgba(255,255,255,0.60);
}

.bn-mapblock__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.bn-mapblock__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bn-mapblock__title {
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  font-weight: 900;
  margin-bottom: 0.7rem;
  border-bottom: 3px solid rgba(255,182,193,0.80);
  display: inline-block;
  padding-bottom: 0.3rem;
}

.bn-mapblock__subtitle {
  margin-top: 1.4rem;
  font-size: clamp(1.15rem, 1.4vw, 1.25rem);
  font-weight: 900;
  border-bottom: 2px solid rgba(255,182,193,0.70);
  display: inline-block;
  padding-bottom: 0.25rem;
}

.bn-mapblock__text {
  font-size: clamp(1.02rem, 1.1vw, 1.08rem);
  line-height: 1.7;
  margin-top: 0.7rem;
  color: rgba(20,20,20,0.88);
}

.bn-mapblock__cta {
  margin-top: 1.8rem;
  align-self: flex-start;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  background: var(--couleur-secondaire);
  color: #000;
  font-weight: 900;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 14px 35px rgba(0,0,0,0.18);
  transition: all 0.2s ease;
}

.bn-mapblock__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 55px rgba(0,0,0,0.25);
}

/* Photo décorative en bas à droite */
.bn-mapblock__photo {
  position: absolute;
  bottom: clamp(20px, 3vw, 40px);
  right: clamp(20px, 3vw, 40px);
  width: clamp(200px, 25vw, 320px);
  z-index: 10;
  transition: all 0.3s ease;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.15));
}

.bn-mapblock__photo:hover {
  transform: translateY(-5px) scale(1.02);
  filter: drop-shadow(0 15px 40px rgba(0,0,0,0.20));
}

.bn-mapblock__photo img {
  width: 100%;
  height: auto;
  display: block;
}

/* RESPONSIVE MAP */

/* Tablette */
@media (min-width: 601px) and (max-width: 1024px) {
  .bn-mapblock__wrapper {
    grid-template-columns: 340px 1fr;
    gap: 28px;
  }

  .bn-mapblock__photo {
    width: clamp(180px, 22vw, 240px);
    bottom: 20px;
    right: 20px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .bn-mapblock__wrapper {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }

  .bn-mapblock__map {
    max-width: 320px;
    margin: 0 auto;
  }

  .bn-mapblock__content {
    align-items: center;
  }

  .bn-mapblock__cta {
    align-self: center;
    width: 100%;
    max-width: 320px;
  }

  /* Photo en position statique sur mobile */
  .bn-mapblock__photo {
    position: static;
    width: 100%;
    max-width: 320px;
    margin: 20px auto 0;
  }
  
  .bn-mapblock__photo img {
    height: auto;
  }
}

/* =========================
   FAQ
   ========================= */

.bn-faq {
  padding: clamp(40px, 6vw, 90px) 0;
  background: linear-gradient(180deg, rgba(255,182,193,0.32), rgba(255,255,255,0));
}

.bn-faq__head {
  text-align: center;
  margin-bottom: clamp(20px, 3vw, 36px);
}

.bn-faq__title {
  margin: 0;
  font-size: clamp(1.7rem, 2.9vw, 2.4rem);
  font-weight: 900;
  color: rgba(20,20,20,0.92);
  letter-spacing: -0.3px;
}

.bn-faq__list {
  display: grid;
  gap: 18px;
}

.bn-faq__item {
  border-radius: 24px;
  background: rgba(248,248,248,0.95);
  box-shadow: 0 18px 55px rgba(0,0,0,0.10);
  overflow: hidden;
  border-left: 6px solid rgba(255,182,193,0.92);
  transition: all 0.2s ease;
}

.bn-faq__q {
  width: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;

  display: grid;
  grid-template-columns: 36px 1fr 24px;
  gap: 16px;
  align-items: center;

  padding: clamp(18px, 2.5vw, 26px);
  text-align: left;

  font-weight: 900;
  font-size: clamp(1.08rem, 1.5vw, 1.3rem);
  color: rgba(20,20,20,0.90);
  line-height: 1.3;
}

.bn-faq__q:focus-visible {
  outline: 3px solid rgba(26,159,153,0.30);
  outline-offset: 4px;
  border-radius: 20px;
}

.bn-faq__icon {
  width: 36px;
  height: 36px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 950;
  font-size: 1.1rem;
  color: rgba(255,182,193,1);
  background: rgba(255,255,255,0.70);
  border: 1px solid rgba(0,0,0,0.06);
}

.bn-faq__chev {
  width: 20px;
  height: 20px;
  border-right: 3px solid rgba(20,20,20,0.50);
  border-bottom: 3px solid rgba(20,20,20,0.50);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  justify-self: end;
}

.bn-faq__a {
  padding: 0 clamp(18px, 2.5vw, 26px) clamp(18px, 2.5vw, 26px);
  color: rgba(20,20,20,0.78);
  font-size: clamp(1.02rem, 1.05vw, 1.06rem);
  line-height: 1.75;
}

.bn-faq__a p {
  margin: 0 0 1rem;
}

.bn-faq__a ul {
  margin: 0 0 1rem 1.2rem;
  padding-left: 0;
}

.bn-faq__a li {
  margin-bottom: 0.5rem;
}

.bn-faq__item.is-open {
  border-left-color: rgba(26,159,153,0.88);
}

.bn-faq__item.is-open .bn-faq__chev {
  transform: rotate(-135deg);
}

/* RESPONSIVE FAQ */

@media (max-width: 600px) {
  .bn-faq__q {
    grid-template-columns: 32px 1fr 20px;
    gap: 12px;
    font-size: 1.05rem;
  }

  .bn-faq__icon {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }

  .bn-faq__chev {
    width: 18px;
    height: 18px;
  }

  .bn-faq__a {
    font-size: 1rem;
  }
}

/* =========================
   REVIEWS (SLIDER)
   ========================= */

.bn-reviews {
  padding: clamp(40px, 6vw, 90px) 0;
  background:
    radial-gradient(900px 500px at 20% 0%, rgba(26,159,153,0.12), transparent 60%),
    linear-gradient(180deg, rgba(255,182,193,0.20), rgba(255,255,255,0));
}

.bn-reviews__head {
  text-align: center;
  margin-bottom: clamp(20px, 3vw, 36px);
}

.bn-reviews__title {
  margin: 0;
  font-size: clamp(1.7rem, 2.9vw, 2.4rem);
  font-weight: 900;
  color: rgba(20,20,20,0.92);
  letter-spacing: -0.3px;
}

.bn-reviews__lead {
  margin: 0.7rem 0 0;
  color: rgba(20,20,20,0.68);
  font-size: clamp(1rem, 1.05vw, 1.08rem);
}

.bn-reviews__viewport {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 22px 70px rgba(0,0,0,0.12);
  border: 1px solid rgba(0,0,0,0.06);

  background:
    radial-gradient(900px 500px at 10% 20%, rgba(26,159,153,0.16), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.90), rgba(255,255,255,0.75));
}

.bn-reviews__track {
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
}

.bn-review {
  flex: 0 0 100%;
  padding: clamp(22px, 3.5vw, 40px);
}

.bn-review__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 14px;
}

.bn-review__name {
  margin: 0;
  font-weight: 950;
  font-size: clamp(1.08rem, 1.15vw, 1.18rem);
  color: rgba(20,20,20,0.92);
}

.bn-review__name span {
  font-weight: 700;
  font-size: clamp(0.95rem, 1vw, 1.02rem);
  color: rgba(20,20,20,0.60);
}

.bn-review__date {
  margin: 0;
  font-weight: 600;
  font-size: clamp(0.88rem, 0.95vw, 0.96rem);
  color: rgba(20,20,20,0.48);
}

.bn-review__text {
  margin: 0;
  font-size: clamp(1.02rem, 1.08vw, 1.1rem);
  line-height: 1.75;
  color: rgba(20,20,20,0.80);
}

/* Dots de navigation */
.bn-reviews__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 0 16px;
  z-index: 10;
}

.bn-reviews__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(26,159,153,0.30);
  border: 1px solid rgba(0,0,0,0.08);
  cursor: pointer;
  transition: all 0.2s ease;
}

.bn-reviews__dot:hover {
  background: rgba(26,159,153,0.45);
}

.bn-reviews__dot.is-active {
  background: rgba(255,182,193,0.95);
  transform: scale(1.15);
}

/* Boutons de navigation */
.bn-reviews__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.75);
  cursor: pointer;
  box-shadow: 0 14px 36px rgba(0,0,0,0.14);
  transition: all 0.2s ease;
  z-index: 10;
}

.bn-reviews__btn:hover {
  transform: translateY(-50%) scale(1.06);
  background: rgba(255,255,255,0.92);
  box-shadow: 0 18px 45px rgba(0,0,0,0.18);
}

.bn-reviews__btn--prev {
  left: 16px;
}

.bn-reviews__btn--next {
  right: 16px;
}

.bn-reviews__btn::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  margin: 0 auto;
  border-right: 3px solid rgba(20,20,20,0.55);
  border-bottom: 3px solid rgba(20,20,20,0.55);
  border-radius: 2px;
}

.bn-reviews__btn--prev::before {
  transform: rotate(135deg);
}

.bn-reviews__btn--next::before {
  transform: rotate(-45deg);
}

/* RESPONSIVE REVIEWS */

/* Tablette */
@media (min-width: 601px) and (max-width: 1024px) {
  .bn-reviews__btn {
    width: 44px;
    height: 44px;
  }

  .bn-reviews__btn--prev {
    left: 12px;
  }

  .bn-reviews__btn--next {
    right: 12px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .bn-reviews__viewport {
    border-radius: 24px;
  }

  .bn-review {
    padding: 20px;
  }

  /* On masque les boutons flèches sur mobile pour un design plus clean */
  .bn-reviews__btn {
    display: none;
  }

  .bn-reviews__dots {
    bottom: 12px;
    gap: 8px;
  }

  .bn-reviews__dot {
    width: 9px;
    height: 9px;
  }
}

/* Grand écran */
@media (min-width: 1600px) {
  .bn-reviews__btn {
    width: 52px;
    height: 52px;
  }

  .bn-reviews__btn::before {
    width: 14px;
    height: 14px;
  }

  .bn-reviews__btn--prev {
    left: 20px;
  }

  .bn-reviews__btn--next {
    right: 20px;
  }
}