/* ── Why So Cheap Section (mobile-first) ───── */
.bsx-why-cheap {
  background: linear-gradient(170deg, #0d3158 0%, #0a2540 50%, #0b2d4d 100%);
  padding: 48px 16px;
  overflow: hidden;
}
.bsx-why-cheap__inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Video */
.bsx-why-cheap__video-col {
  width: 100%;
}
.bsx-why-cheap__video-wrap {
  border-radius: var(--bsx-radius-md);
  overflow: hidden;
  border: 2px solid var(--bsx-border-glass);
  box-shadow: var(--bsx-shadow-md);
}
.bsx-why-cheap__video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

/* Content */
.bsx-why-cheap__content {
  min-width: 0;
}
.bsx-why-cheap__eyebrow {
  font-family: var(--bsx-font);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bsx-accent);
  margin: 0 0 8px;
}
.bsx-why-cheap__title {
  font-family: var(--bsx-font);
  font-size: 22px;
  font-weight: 700;
  color: var(--bsx-white);
  margin: 0 0 20px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* Check list */
.bsx-why-cheap__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.bsx-why-cheap__point {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.bsx-why-cheap__check {
  flex-shrink: 0;
  margin-top: 2px;
}
.bsx-why-cheap__point-title {
  font-family: var(--bsx-font);
  font-size: 14px;
  font-weight: 600;
  color: var(--bsx-white);
  margin: 0;
  line-height: 1.3;
}
.bsx-why-cheap__point-desc {
  font-family: var(--bsx-font);
  font-size: 13px;
  color: var(--bsx-text-light);
  margin: 2px 0 0;
  line-height: 1.5;
}
.bsx-why-cheap__note {
  font-family: var(--bsx-font);
  font-size: 13px;
  font-weight: 500;
  color: var(--bsx-text-light);
  margin: 20px 0 0;
  font-style: italic;
}

/* ── Tablet ─────────────────────────────────── */
@media (min-width: 768px) {
  .bsx-why-cheap { padding: 64px 24px; }
  .bsx-why-cheap__inner {
    flex-direction: row;
    gap: 40px;
    align-items: center;
  }
  .bsx-why-cheap__video-col { flex: 1; min-width: 0; }
  .bsx-why-cheap__content { flex: 1; min-width: 0; }
  .bsx-why-cheap__eyebrow { font-size: 13px; }
  .bsx-why-cheap__title { font-size: 26px; }
  .bsx-why-cheap__point-title { font-size: 15px; }
  .bsx-why-cheap__point-desc { font-size: 14px; }
  .bsx-why-cheap__video-wrap { border-width: 3px; border-radius: var(--bsx-radius-lg); }
}

/* ── Desktop ────────────────────────────────── */
@media (min-width: 1024px) {
  .bsx-why-cheap { padding: 80px 20px; }
  .bsx-why-cheap__inner { gap: 56px; }
  .bsx-why-cheap__title { font-size: 30px; }
  .bsx-why-cheap__list { gap: 16px; }
  .bsx-why-cheap__point-title { font-size: 16px; }
  .bsx-why-cheap__point-desc { font-size: 15px; }
  .bsx-why-cheap__note { font-size: 14px; }
  .bsx-why-cheap__video-wrap { border-width: 4px; }
}
