.bm-home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, .75fr);
  gap: 28px;
  align-items: center;
  padding: clamp(26px, 5vw, 54px);
  color: #fff;
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 16%, rgba(255, 193, 7, .28), transparent 27%),
    linear-gradient(135deg, #073b8c 0%, #0b5ed7 58%, #1591d8 100%);
  box-shadow: 0 22px 54px rgba(6, 55, 128, .22);
  overflow: hidden;
}

.bm-home-hero__eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: #ffd866;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.bm-home-hero h1 {
  max-width: 760px;
  margin: 0 0 14px;
  font-size: clamp(2rem, 5vw, 3.55rem);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.bm-home-hero p {
  max-width: 720px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(1rem, 1.8vw, 1.16rem);
}

.bm-home-hero__facts {
  display: grid;
  gap: 10px;
}

.bm-home-hero__facts div {
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, .19);
  border-radius: 17px;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(8px);
}

.bm-home-hero__facts strong,
.bm-home-hero__facts span {
  display: block;
}

.bm-home-hero__facts strong {
  color: #fff;
  font-size: 1.35rem;
}

.bm-home-hero__facts span {
  color: rgba(255, 255, 255, .72);
  font-size: .78rem;
}

.bm-category-links {
  display: flex;
  gap: 8px;
  padding: 5px 1px 10px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.bm-category-links a {
  flex: 0 0 auto;
  padding: 9px 14px;
  color: #3e4d62;
  border: 1px solid #dce4ef;
  border-radius: 999px;
  background: #fff;
  font-size: .86rem;
  font-weight: 650;
  text-decoration: none;
  transition: .18s ease;
}

.bm-category-links a:hover,
.bm-category-links a.is-active {
  color: #fff;
  border-color: #0b5ed7;
  background: #0b5ed7;
  transform: translateY(-1px);
}

.bm-seo-content {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid #e1e8f1;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(25, 52, 89, .08);
}

.bm-seo-content__intro {
  max-width: 820px;
}

.bm-seo-content__intro h2 {
  margin: 5px 0 12px;
  color: #1c2f4c;
}

.bm-seo-content__intro p,
.bm-seo-content__grid p {
  color: #64728a;
}

.bm-seo-content__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.bm-seo-content__grid article {
  padding: 20px;
  border-radius: 18px;
  background: #f5f8fc;
}

.bm-seo-content__grid article > span {
  display: block;
  margin-bottom: 10px;
  font-size: 1.6rem;
}

.bm-seo-content__grid h3 {
  margin-bottom: 8px;
  color: #263b5b;
  font-size: 1rem;
}

.bm-seo-content__grid p {
  margin: 0;
  font-size: .88rem;
}

.bm-seo-content__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 22px;
}

.bm-seo-content__actions a {
  font-size: .88rem;
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 767px) {
  .bm-home-hero {
    grid-template-columns: 1fr;
    gap: 20px;
    border-radius: 22px;
  }

  .bm-home-hero__facts {
    grid-template-columns: repeat(3, 1fr);
  }

  .bm-home-hero__facts div {
    padding: 11px 8px;
    text-align: center;
  }

  .bm-home-hero__facts strong {
    font-size: 1rem;
  }

  .bm-home-hero__facts span {
    font-size: .66rem;
  }

  .bm-seo-content__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .bm-home-hero__facts {
    grid-template-columns: 1fr;
  }

  .bm-home-hero__facts div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }
}
