/* ============================================================
   Podcast Distribution Page — bmp-* namespace
   ============================================================ */

/* ── Shared layout for podcast sections ──────────────────── */
.bmp-page {
  background:
    radial-gradient(circle at 12% 6%,  rgba(139, 92, 246, .22), transparent 32rem),
    radial-gradient(circle at 88% 16%, rgba(34, 211, 238, .10), transparent 34rem),
    radial-gradient(circle at 42% 82%, rgba(168, 85, 247, .14), transparent 34rem),
    var(--bm-night);
}

.bmp-section {
  padding-block: clamp(64px, 8vw, 112px);
}

.bmp-section-head {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.bmp-section-head h2 {
  margin: 0 0 14px;
  font-size: clamp(1.5rem, 3.2vw, 2.3rem);
  font-weight: 900;
  line-height: 1.35;
}

.bmp-section-head p {
  margin: 0;
  color: var(--bm-muted);
  font-size: 1rem;
}

/* ── Hero ─────────────────────────────────────────────────── */
.bmp-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(72px, 9vw, 120px);
}

.bmp-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.bmp-hero__content { order: 2; }
.bmp-hero__visual  { order: 1; }

/* uploaded image replaces mock */
.bmp-hero__uploaded-img {
  width: 100%;
  border-radius: 20px;
  display: block;
  box-shadow: var(--bm-shadow), var(--bm-glow);
}

.bmp-hero__visual .bmd-video-wrap {
  width: 100%;
  height: auto;
  min-height: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--bm-shadow), var(--bm-glow);
}

.bmp-hero__visual .bmd-hero-video {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
}

/* ── Hero CSS dashboard mock ──────────────────────────────── */
.bmp-hero-mock {
  position: relative;
  width: 100%;
}

.bmp-hero-mock__screen {
  border: 1px solid rgba(139, 92, 246, .28);
  border-radius: 20px;
  background: linear-gradient(160deg, #0f1628 0%, #0a0f1e 100%);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.05),
    0 24px 80px rgba(0,0,0,.55),
    0 0 60px rgba(139,92,246,.18);
  overflow: hidden;
  padding: 18px 20px 20px;
}

.bmp-hero-mock__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.bmp-hero-mock__logo { display: flex; align-items: center; }

.bmp-hero-mock__title {
  font-size: 14px;
  font-weight: 800;
  color: rgba(255,255,255,.9);
  letter-spacing: .01em;
}

.bmp-hero-mock__menu-icon {
  color: rgba(255,255,255,.5);
  display: flex;
  align-items: center;
}

/* episode row */
.bmp-hero-mock__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bmp-hero-mock__episode {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.bmp-hero-mock__cover {
  width: 82px;
  height: 82px;
  flex-shrink: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #2e1065, #1e0a3c);
  border: 1px solid rgba(139,92,246,.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  overflow: hidden;
}

.bmp-hero-mock__cover-label {
  font-size: 9px;
  font-weight: 800;
  color: rgba(255,255,255,.85);
  text-align: center;
  padding: 0 4px;
  line-height: 1.3;
}

.bmp-hero-mock__ep-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bmp-hero-mock__ep-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 700;
  color: var(--bm-muted);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.bmp-hero-mock__ep-title {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* waveform */
.bmp-hero-mock__waveform {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 32px;
}

.bmp-hero-mock__waveform span {
  flex: 1;
  border-radius: 2px;
  background: rgba(139,92,246,.35);
  min-height: 3px;
  transition: background .2s;
}

.bmp-hero-mock__waveform span:nth-child(-n+14) {
  background: var(--bm-violet);
}

.bmp-hero-mock__duration {
  font-size: 11px;
  font-weight: 700;
  color: var(--bm-muted);
  text-align: end;
}

/* stats row */
.bmp-hero-mock__stats {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 10px;
  align-items: center;
}

.bmp-hero-mock__stat-box {
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  padding: 10px 12px;
}

.bmp-hero-mock__stat-label {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  color: var(--bm-muted);
  margin-bottom: 6px;
  font-weight: 600;
}

.bmp-hero-mock__stat-val {
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -.01em;
}

.bmp-hero-mock__stat-delta {
  font-size: 11px;
  font-weight: 800;
  margin-top: 4px;
}

.bmp-hero-mock__stat-delta--up   { color: var(--bm-emerald); }
.bmp-hero-mock__stat-delta--down { color: #f87171; }

.bmp-hero-mock__growth-badge {
  border: 1px solid rgba(139,92,246,.3);
  border-radius: 12px;
  background: rgba(139,92,246,.1);
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 17px;
  color: #a3e635;
  white-space: nowrap;
}

/* mini area chart */
.bmp-hero-mock__chart {
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  background: rgba(255,255,255,.03);
  padding: 10px 12px 8px;
  overflow: hidden;
}

.bmp-hero-mock__chart-label {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  color: var(--bm-muted);
  margin-bottom: 8px;
  font-weight: 600;
}

.bmp-hero-mock__chart-svg {
  width: 100%;
  height: 48px;
  display: block;
}

/* floating badge */
.bmp-hero-mock__badge {
  position: absolute;
  bottom: -16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(139,92,246,.35);
  border-radius: 14px;
  background: rgba(10,15,28,.88);
  backdrop-filter: blur(16px);
  padding: 10px 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
  z-index: 2;
}

/* wave svg decoration */
.bmp-hero-mock__wave {
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  pointer-events: none;
}

.bmp-hero-mock__wave svg {
  width: 100%;
  height: 40px;
  display: block;
}

.bmp-hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(139, 92, 246, .35);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 13px;
  color: var(--bm-violet);
  background: rgba(139, 92, 246, .08);
  margin-bottom: 20px;
}

.bmp-hero__title {
  margin: 0 0 8px;
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  font-weight: 950;
  line-height: 1.2;
  color: #fff;
}

.bmp-hero__title-accent {
  display: block;
  background: linear-gradient(90deg, var(--bm-violet), var(--bm-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bmp-hero__desc {
  margin: 0 0 32px;
  color: var(--bm-muted);
  font-size: 1rem;
  line-height: 1.85;
  max-width: 440px;
}

.bmp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.bmp-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border: 1px solid var(--bm-line);
  border-radius: 16px;
  background: rgba(16, 23, 41, .5);
  overflow: hidden;
}

.bmp-hero__stat {
  flex: 1;
  min-width: 120px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.8);
  border-inline-end: 1px solid var(--bm-line);
}

.bmp-hero__stat:last-child { border-inline-end: none; }

.bmp-hero__stat-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bm-violet);
  flex-shrink: 0;
}

.bmp-hero__stat-dot--cyan   { background: var(--bm-cyan); }
.bmp-hero__stat-dot--green  { background: var(--bm-emerald); }

.bmp-hero__visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.bmp-hero__mock {
  border: 1px solid var(--bm-line);
  border-radius: 20px;
  background: rgba(16, 23, 41, .85);
  padding: 24px;
  backdrop-filter: blur(12px);
  box-shadow: var(--bm-shadow), var(--bm-glow);
}

.bmp-hero__mock-image { width: 100%; border-radius: 12px; display: block; }

/* ── Platforms ────────────────────────────────────────────── */
.bmp-platforms__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.bmp-platform-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--bm-line);
  border-radius: 14px;
  padding: 14px 22px;
  background: var(--bm-card);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: border-color .2s, background .2s;
}

.bmp-platform-badge:hover {
  border-color: rgba(139, 92, 246, .4);
  background: rgba(139, 92, 246, .07);
}

.bmp-platform-badge__icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  overflow: hidden;
}

.bmp-platform-badge__icon img { width: 100%; height: 100%; object-fit: contain; }

/* Platform brand colours (icon bg fallbacks) */
.bmp-platform-badge[data-platform="spotify"]       .bmp-platform-badge__icon { background: #1DB954; }
.bmp-platform-badge[data-platform="apple"]         .bmp-platform-badge__icon { background: #FC3C44; }
.bmp-platform-badge[data-platform="youtube"]       .bmp-platform-badge__icon { background: #FF0000; }
.bmp-platform-badge[data-platform="castbox"]       .bmp-platform-badge__icon { background: #F55B23; }
.bmp-platform-badge[data-platform="deezer"]        .bmp-platform-badge__icon { background: #A855F7; }
.bmp-platform-badge[data-platform="amazon"]        .bmp-platform-badge__icon { background: #FF9900; }
.bmp-platform-badge[data-platform="pocketcasts"]   .bmp-platform-badge__icon { background: #F43F5E; }
.bmp-platform-badge[data-platform="soundcloud"]    .bmp-platform-badge__icon { background: #FF5500; }

/* ── Features ─────────────────────────────────────────────── */
.bmp-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.bmp-feature-card {
  border: 1px solid var(--bm-line);
  border-radius: 20px;
  padding: 28px 24px;
  background: var(--bm-card);
  transition: border-color .25s, transform .25s;
}

.bmp-feature-card:hover {
  border-color: rgba(139, 92, 246, .35);
  transform: translateY(-3px);
}

.bmp-feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(139, 92, 246, .12);
  border: 1px solid rgba(139, 92, 246, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--bm-violet);
}

.bmp-feature-card h3 {
  margin: 0 0 10px;
  font-size: 1rem;
  font-weight: 800;
}

.bmp-feature-card p {
  margin: 0;
  font-size: 14px;
  color: var(--bm-muted);
  line-height: 1.75;
}

/* ── Steps ────────────────────────────────────────────────── */
.bmp-steps__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.bmp-steps__row::before {
  content: '';
  position: absolute;
  top: 48px;
  right: calc(12.5% + 24px);
  left:  calc(12.5% + 24px);
  height: 1px;
  background: var(--bm-violet);
  opacity: .3;
  pointer-events: none;
}

.bmp-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
}

.bmp-step__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--bm-violet);
  background: rgba(139, 92, 246, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  color: var(--bm-violet);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 24px rgba(139, 92, 246, .25);
}

.bmp-step__icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: var(--bm-card);
  border: 1px solid var(--bm-line);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--bm-violet);
}

.bmp-step h3 {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 800;
}

.bmp-step p {
  margin: 0;
  font-size: 13px;
  color: var(--bm-muted);
  line-height: 1.7;
}

.bmp-step__arrow {
  position: absolute;
  top: 28px;
  left: -12px;
  color: rgba(139, 92, 246, .4);
}

/* ── Analytics/Stats ──────────────────────────────────────── */
.bmp-stats__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1.4fr 1fr;
  gap: 16px;
  align-items: start;
}

.bmp-stat-card {
  border: 1px solid var(--bm-line);
  border-radius: 20px;
  background: var(--bm-card);
  padding: 24px 20px;
  min-height: stretch;
}

.bmp-stat-card__label {
  font-size: 12px;
  font-weight: 700;
  color: var(--bm-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 14px;
}

.bmp-stat-card__value {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 950;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}

.bmp-stat-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-radius: 8px;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 800;
  background: rgba(52, 211, 153, .12);
  color: var(--bm-emerald);
}

.bmp-stat-card__badge--red {
  background: rgba(248, 113, 113, .12);
  color: #f87171;
}

/* Mini sparkline */
.bmp-sparkline {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 50px;
  margin-top: 16px;
}

.bmp-sparkline span {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: rgba(139, 92, 246, .3);
}

.bmp-sparkline span:last-child { background: var(--bm-violet); }

/* Donut chart placeholder */
.bmp-donut-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
}

.bmp-donut {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: conic-gradient(
    #1DB954 0% 45%,
    #FC3C44 45% 67%,
    #FF0000 67% 80%,
    rgba(255,255,255,.1) 80% 100%
  );
  flex-shrink: 0;
  position: relative;
}

.bmp-donut::after {
  content: '';
  position: absolute;
  inset: 22px;
  border-radius: 50%;
  background: var(--bm-card-solid);
}

.bmp-donut-legend { font-size: 12px; color: var(--bm-muted); }
.bmp-donut-legend li { list-style: none; display: flex; align-items: center; gap: 6px; margin-bottom: 4px; }
.bmp-donut-legend li::before { content: ''; width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.bmp-donut-legend li:nth-child(1)::before { background: #1DB954; }
.bmp-donut-legend li:nth-child(2)::before { background: #FC3C44; }
.bmp-donut-legend li:nth-child(3)::before { background: #FF0000; }
.bmp-donut-legend li:nth-child(4)::before { background: rgba(255,255,255,.3); }

/* Episodes list */
.bmp-ep-list { margin-top: 12px; display: flex; flex-direction: column; gap: 8px; }
.bmp-ep-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
}

.bmp-ep-item__rank {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(139, 92, 246, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: var(--bm-violet);
  flex-shrink: 0;
}

.bmp-ep-item__name {
  flex: 1;
  color: rgba(255,255,255,.8);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bmp-ep-item__count { color: var(--bm-muted); flex-shrink: 0; }

/* ── Why Bamdad ───────────────────────────────────────────── */
.bmp-why__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  align-items: stretch;
}

.bmp-why-card {
  border: 1px solid var(--bm-line);
  border-radius: 20px;
  padding: 26px 20px;
  background: var(--bm-card);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color .2s;
}

.bmp-why-card:hover { border-color: rgba(139, 92, 246, .35); }

.bmp-why-card--featured {
  border-color: rgba(139, 92, 246, .5);
  background: linear-gradient(135deg, rgba(139, 92, 246, .12), rgba(34, 211, 238, .06));
  box-shadow: 0 0 40px rgba(139, 92, 246, .18);
}

.bmp-why-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(139, 92, 246, .1);
  border: 1px solid rgba(139, 92, 246, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bm-violet);
  margin: 0 auto 14px;
}

.bmp-why-card--featured .bmp-why-card__icon {
  background: linear-gradient(135deg, var(--bm-violet), var(--bm-cyan));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 0 24px rgba(139,92,246,.35);
}

.bmp-why-card--featured .bmp-why-card__icon .material-symbols-rounded {
  color: #fff;
  font-variation-settings: 'FILL' 1, 'wght' 600;
}

.bmp-why-card h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
}

.bmp-why-card p {
  margin: 0;
  font-size: 13px;
  color: var(--bm-muted);
  line-height: 1.7;
  text-align: center;
}

/* ── FAQ ──────────────────────────────────────────────────── */
.bmp-faq__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}

.bmp-faq__aside {
  position: sticky;
  top: 100px;
}

.bmp-faq__aside h2 {
  margin: 0 0 16px;
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 900;
}

.bmp-faq__aside p {
  color: var(--bm-muted);
  font-size: 15px;
  margin: 0 0 28px;
}

.bmp-faq__list { display: flex; flex-direction: column; gap: 12px; }

.bmp-faq-item {
  border: 1px solid var(--bm-line);
  border-radius: 16px;
  background: var(--bm-card);
  overflow: hidden;
}

.bmp-faq-item__trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  background: none;
  border: none;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-align: right;
  line-height: 1.5;
  font-family: inherit;
}

.bmp-faq-item__trigger:hover { color: var(--bm-violet); }

.bmp-faq-item__icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  border: 1px solid var(--bm-line);
  background: rgba(255,255,255,.04);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .25s, background .2s, border-color .2s;
  line-height: 1;
}

.bmp-faq-item.is-open .bmp-faq-item__icon {
  transform: rotate(45deg);
  background: rgba(139, 92, 246, .15);
  border-color: rgba(139, 92, 246, .3);
  color: var(--bm-violet);
}

.bmp-faq-item.is-open { border-color: rgba(139, 92, 246, .3); }

.bmp-faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.bmp-faq-item.is-open .bmp-faq-item__body { max-height: 300px; }

.bmp-faq-item__body p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--bm-muted);
  font-size: 14px;
  line-height: 1.8;
}

/* ── Final CTA ────────────────────────────────────────────── */
.bmp-final {
  border: 1px solid var(--bm-line);
  border-radius: var(--bm-radius);
  background: linear-gradient(135deg, rgba(139, 92, 246, .1), rgba(34, 211, 238, .05));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  padding: clamp(40px, 6vw, 72px);
  position: relative;
  overflow: hidden;
}

.bmp-final::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse at 30% 50%, rgba(139, 92, 246, .12), transparent 60%);
  pointer-events: none;
}

.bmp-final h2 {
  margin: 0 0 14px;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-weight: 900;
}

.bmp-final p {
  margin: 0 0 32px;
  color: var(--bm-muted);
  font-size: 15px;
  line-height: 1.8;
  max-width: 480px;
}

.bmp-final__actions { display: flex; flex-wrap: wrap; gap: 12px; }

.bmp-final__image {
  width: clamp(160px, 20vw, 260px);
  filter: drop-shadow(0 0 40px rgba(139, 92, 246, .4));
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .bmp-stats__grid { grid-template-columns: 1fr 1fr; }
  .bmp-why__grid   { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .bmp-features__grid { grid-template-columns: repeat(2, 1fr); }
  .bmp-steps__row     { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .bmp-steps__row::before { display: none; }
  .bmp-step__arrow    { display: none; }
  .bmp-faq__inner     { grid-template-columns: 1fr; }
  .bmp-faq__aside     { position: static; }
}

@media (max-width: 768px) {
  .bmp-hero__grid    { grid-template-columns: 1fr; }
  .bmp-hero__content { order: 1; }
  .bmp-hero__visual  { order: 2; }
  .bmp-hero__stats   { flex-direction: column; }
  .bmp-hero__stat    { border-inline-end: none; border-bottom: 1px solid var(--bm-line); }
  .bmp-hero__stat:last-child { border-bottom: none; }
  .bmp-why__grid     { grid-template-columns: repeat(2, 1fr); }
  .bmp-final         { grid-template-columns: 1fr; }
  .bmp-final__image  { display: none; }
}

@media (max-width: 540px) {
  .bmp-features__grid { grid-template-columns: 1fr; }
  .bmp-steps__row     { grid-template-columns: 1fr; }
  .bmp-stats__grid    { grid-template-columns: 1fr; }
  .bmp-why__grid      { grid-template-columns: 1fr; }
}
