/* ——— HMT shared ——— */
.rb-hmt-credit {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(42, 42, 42, 0.45);
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .rb-hmt-credit {
    font-size: 16px;
  }
}

.rb-hmt-bullets {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rb-hmt-bullet {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.rb-hmt-bullet__mark {
  margin-top: 8px;
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  background: var(--rb-red);
}

.rb-hmt-bullet__text {
  font-size: 18px;
  line-height: 1.4;
  color: var(--rb-dark);
}

@media (min-width: 768px) {
  .rb-hmt-bullet__text {
    font-size: 20px;
  }
}

.rb-hmt-bullet--light .rb-hmt-bullet__text {
  color: #fff;
}

/* ——— Product hero ——— */
.rb-hmt-hero {
  position: relative;
  height: 700px;
  overflow: hidden;
}

.rb-hmt-hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.rb-hmt-hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 10%, transparent 58%);
}

.rb-hmt-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  padding: 48px 24px 24px;
}

@media (min-width: 768px) {
  .rb-hmt-hero__inner {
    padding: 60px 120px 24px;
  }
}

.rb-hmt-hero__title {
  margin: 0;
  max-width: 900px;
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.05;
}

@media (min-width: 768px) {
  .rb-hmt-hero__title {
    font-size: 60px;
    line-height: 60px;
  }
}

.rb-hmt-hero__credit-wrap {
  display: flex;
  justify-content: flex-end;
}

.rb-hmt-hero__cta {
  position: absolute;
  right: 24px;
  bottom: 40px;
  z-index: 2;
}

@media (min-width: 768px) {
  .rb-hmt-hero__cta {
    right: 120px;
    bottom: 48px;
  }
}

/* ——— Intro + stats ——— */
.rb-hmt-intro {
  position: relative;
  overflow: hidden;
  background: var(--rb-dark);
}

.rb-hmt-intro__watermark {
  position: absolute;
  top: 10%;
  left: -10%;
  width: 70%;
  max-width: 1020px;
  opacity: 0.4;
  pointer-events: none;
}

.rb-hmt-intro__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 64px 24px;
}

@media (min-width: 768px) {
  .rb-hmt-intro__inner {
    flex-direction: row;
    align-items: center;
    gap: 100px;
    padding: 120px;
  }
}

@media (min-width: 1200px) {
  .rb-hmt-intro__inner {
    gap: 180px;
  }
}

.rb-hmt-intro__copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (min-width: 768px) {
  .rb-hmt-intro__copy {
    gap: 60px;
  }
}

.rb-hmt-intro__lead {
  margin: 0;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.35;
}

@media (min-width: 768px) {
  .rb-hmt-intro__lead {
    font-size: 26px;
    line-height: 36px;
  }
}

.rb-hmt-intro__body {
  margin: 0;
  color: #fff;
  font-size: 18px;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .rb-hmt-intro__body {
    font-size: 20px;
  }
}

.rb-hmt-intro__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
}

@media (min-width: 768px) {
  .rb-hmt-intro__stats {
    width: 480px;
    flex-shrink: 0;
    gap: 24px;
  }
}

.rb-hmt-stat {
  display: flex;
  min-height: 140px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px;
  border-radius: 24px;
  background: var(--rb-grey);
  text-align: center;
}

@media (min-width: 768px) {
  .rb-hmt-stat {
    min-height: 180px;
    gap: 16px;
    padding: 24px;
  }
}

.rb-hmt-stat__value {
  margin: 0;
  color: var(--rb-yellow);
  font-size: 28px;
  font-weight: 600;
  line-height: 36px;
}

@media (min-width: 768px) {
  .rb-hmt-stat__value {
    font-size: 34px;
  }
}

.rb-hmt-stat__label {
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

@media (min-width: 768px) {
  .rb-hmt-stat__label {
    font-size: 18px;
  }
}

/* ——— Picture strip ——— */
.rb-hmt-pictures {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .rb-hmt-pictures {
    grid-template-columns: repeat(3, 1fr);
  }
}

.rb-hmt-pictures__item {
  position: relative;
  aspect-ratio: 4 / 3;
}

@media (min-width: 768px) {
  .rb-hmt-pictures__item {
    aspect-ratio: 1315 / 845;
  }
}

.rb-hmt-pictures__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rb-hmt-pictures__credit {
  position: absolute;
  right: 16px;
  bottom: 16px;
}

@media (min-width: 768px) {
  .rb-hmt-pictures__credit {
    right: 24px;
    bottom: 24px;
  }
}

/* ——— Why ——— */
.rb-hmt-why {
  background: #f2f2f2;
}

.rb-hmt-why__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 64px 24px;
}

@media (min-width: 768px) {
  .rb-hmt-why__inner {
    gap: 60px;
    padding: 120px;
  }
}

.rb-hmt-why__title {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--rb-dark);
}

@media (min-width: 768px) {
  .rb-hmt-why__title {
    font-size: 60px;
    line-height: 60px;
  }
}

.rb-hmt-why__grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width: 768px) {
  .rb-hmt-why__grid {
    flex-direction: row;
    gap: 120px;
  }
}

.rb-hmt-why__copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.rb-hmt-why__copy p {
  margin: 0;
  font-size: 18px;
  line-height: 28px;
  color: var(--rb-dark);
}

@media (min-width: 768px) {
  .rb-hmt-why__copy p {
    font-size: 20px;
  }
}

.rb-hmt-why__list {
  width: 100%;
}

@media (min-width: 768px) {
  .rb-hmt-why__list {
    width: 540px;
    flex-shrink: 0;
  }
}

.rb-hmt-why__list-title {
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 600;
  line-height: 28px;
  color: var(--rb-red);
}

@media (min-width: 768px) {
  .rb-hmt-why__list-title {
    font-size: 24px;
  }
}

/* ——— Bleed image ——— */
.rb-hmt-bleed {
  position: relative;
  display: flex;
  height: 360px;
  align-items: flex-end;
  justify-content: flex-end;
  overflow: hidden;
}

.rb-hmt-bleed--tall {
  height: 360px;
}

@media (min-width: 768px) {
  .rb-hmt-bleed {
    height: 600px;
  }

  .rb-hmt-bleed--tall {
    height: 600px;
  }
}

.rb-hmt-bleed__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.rb-hmt-bleed__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.rb-hmt-bleed__credit {
  position: relative;
  z-index: 1;
  padding: 0 24px 24px;
}

/* ——— Difference ——— */
.rb-hmt-difference {
  background: var(--rb-dark);
  color: #fff;
}

.rb-hmt-difference__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding: 64px 24px;
}

@media (min-width: 768px) {
  .rb-hmt-difference__inner {
    flex-direction: row;
    justify-content: space-between;
    gap: 64px;
    padding: 120px;
  }
}

.rb-hmt-difference__copy {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 32px;
}

@media (min-width: 768px) {
  .rb-hmt-difference__copy {
    width: 667px;
  }
}

.rb-hmt-difference__copy h2 {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .rb-hmt-difference__copy h2 {
    font-size: 60px;
    line-height: 60px;
  }
}

.rb-hmt-difference__copy > p {
  margin: 0;
  font-size: 18px;
  line-height: 28px;
}

@media (min-width: 768px) {
  .rb-hmt-difference__copy > p {
    font-size: 20px;
  }
}

.rb-hmt-difference__panel {
  padding: 20px 24px;
  border-radius: 24px;
  background: var(--rb-grey);
}

@media (min-width: 768px) {
  .rb-hmt-difference__panel {
    padding: 24px;
  }
}

.rb-hmt-difference__note {
  margin: 0;
  white-space: pre-line;
  font-size: 18px;
  line-height: 28px;
}

.rb-hmt-difference__media {
  position: relative;
  width: 100%;
  max-width: 450px;
  aspect-ratio: 450 / 582;
  overflow: hidden;
}

.rb-hmt-difference__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ——— Comparison ——— */
.rb-hmt-compare {
  position: relative;
  overflow: hidden;
}

.rb-hmt-compare__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.rb-hmt-compare__overlay {
  position: absolute;
  inset: 0;
  background: rgba(241, 71, 40, 0.7);
}

.rb-hmt-compare__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 64px 24px;
}

@media (min-width: 768px) {
  .rb-hmt-compare__inner {
    gap: 60px;
    padding: 120px;
  }
}

.rb-hmt-compare__intro {
  max-width: 954px;
  margin: 0;
  text-align: center;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .rb-hmt-compare__intro {
    font-size: 20px;
  }
}

.rb-hmt-compare__grid {
  display: grid;
  width: 100%;
  max-width: 948px;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .rb-hmt-compare__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

.rb-hmt-compare__col {
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
}

.rb-hmt-compare__col-head {
  padding: 32px 24px 0;
}

@media (min-width: 768px) {
  .rb-hmt-compare__col-head {
    padding: 32px 32px 0;
  }
}

.rb-hmt-compare__logo {
  display: block;
  height: 40px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .rb-hmt-compare__logo {
    height: 48px;
  }
}

.rb-hmt-compare__pure-title {
  display: flex;
  height: 60px;
  align-items: center;
  justify-content: center;
  margin: 0;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
  color: var(--rb-red);
}

@media (min-width: 768px) {
  .rb-hmt-compare__pure-title {
    font-size: 26px;
  }
}

.rb-hmt-compare__divider {
  height: 1px;
  margin-top: 16px;
  background: #ddd;
}

.rb-hmt-compare__row {
  padding: 16px 24px;
}

@media (min-width: 768px) {
  .rb-hmt-compare__row {
    padding: 16px 32px;
  }

  .rb-hmt-compare__row.is-last {
    padding-bottom: 32px;
  }
}

.rb-hmt-compare__row-label {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  color: var(--rb-red);
}

@media (min-width: 768px) {
  .rb-hmt-compare__row-label {
    font-size: 24px;
  }
}

.rb-hmt-compare__row-body {
  margin: 0;
  font-size: 18px;
  line-height: 1.4;
  color: var(--rb-dark);
}

@media (min-width: 768px) {
  .rb-hmt-compare__row-body {
    font-size: 20px;
  }
}

/* ——— Benefits ——— */
.rb-hmt-benefits {
  background: #fff;
}

.rb-hmt-benefits__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 64px 24px;
}

@media (min-width: 768px) {
  .rb-hmt-benefits__inner {
    flex-direction: row;
    gap: 60px;
    padding: 120px;
  }
}

.rb-hmt-benefits__side {
  position: relative;
  display: flex;
  min-height: 320px;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  border-radius: 16px;
  padding: 64px 24px;
}

@media (min-width: 768px) {
  .rb-hmt-benefits__side {
    width: 383px;
    flex-shrink: 0;
    padding: 120px 32px;
  }
}

.rb-hmt-benefits__side-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.rb-hmt-benefits__side-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.rb-hmt-benefits__side-title {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.05;
  color: #fff;
}

@media (min-width: 768px) {
  .rb-hmt-benefits__side-title {
    font-size: 60px;
    line-height: 60px;
  }
}

.rb-hmt-benefits__side-title .is-red {
  color: var(--rb-red);
}

.rb-hmt-benefits__side-title span {
  display: block;
}

.rb-hmt-benefits__grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .rb-hmt-benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .rb-hmt-benefits__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

.rb-hmt-benefit-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 24px 16px;
  border-radius: 16px;
  background: #eee;
  box-shadow: 0 4px 2px rgba(0, 0, 0, 0.1);
}

.rb-hmt-benefit-card__num {
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--rb-panel);
  color: var(--rb-yellow);
  font-size: 28px;
  font-weight: 600;
  line-height: 36px;
}

.rb-hmt-benefit-card h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  color: var(--rb-dark);
}

@media (min-width: 768px) {
  .rb-hmt-benefit-card h3 {
    font-size: 24px;
  }
}

.rb-hmt-benefit-card p {
  margin: 0;
  font-size: 18px;
  line-height: 1.4;
  color: var(--rb-dark);
}

@media (min-width: 768px) {
  .rb-hmt-benefit-card p {
    font-size: 20px;
  }
}

/* ——— Performance ——— */
.rb-hmt-performance {
  position: relative;
  overflow: hidden;
}

.rb-hmt-performance__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.rb-hmt-performance__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.rb-hmt-performance__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 64px 24px;
  color: #fff;
}

@media (min-width: 768px) {
  .rb-hmt-performance__inner {
    flex-direction: row;
    gap: 100px;
    padding: 120px;
  }
}

.rb-hmt-performance__inner > h2 {
  margin: 0;
  width: 100%;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .rb-hmt-performance__inner > h2 {
    width: 400px;
    flex-shrink: 0;
    font-size: 60px;
    line-height: 60px;
  }
}

.rb-hmt-performance__grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 640px) {
  .rb-hmt-performance__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

.rb-hmt-performance__item h3 {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 600;
  line-height: 28px;
}

@media (min-width: 768px) {
  .rb-hmt-performance__item h3 {
    font-size: 26px;
    line-height: 30px;
  }
}

.rb-hmt-performance__item p {
  margin: 0;
  font-size: 18px;
  line-height: 28px;
}

@media (min-width: 768px) {
  .rb-hmt-performance__item p {
    font-size: 20px;
  }
}

/* ——— Carousel ——— */
.rb-hmt-carousel {
  background: var(--rb-dark);
  color: #fff;
}

.rb-hmt-carousel__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 64px 24px;
}

@media (min-width: 768px) {
  .rb-hmt-carousel__inner {
    gap: 60px;
    padding: 120px;
  }
}

.rb-hmt-carousel__head {
  text-align: center;
}

.rb-hmt-carousel__head h2 {
  margin: 0 0 16px;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .rb-hmt-carousel__head h2 {
    font-size: 60px;
    line-height: 60px;
  }
}

.rb-hmt-carousel__head p {
  margin: 0;
  font-size: 18px;
  line-height: 28px;
}

.rb-hmt-carousel__scroller {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 4px;
}

.rb-hmt-carousel__scroller::-webkit-scrollbar {
  display: none;
}

.rb-hmt-carousel__card {
  display: flex;
  width: min(543px, 85vw);
  height: 460px;
  flex-shrink: 0;
  flex-direction: column;
  overflow: hidden;
}

@media (min-width: 768px) {
  .rb-hmt-carousel__card {
    width: 543px;
    height: 500px;
  }
}

.rb-hmt-carousel__card-media {
  position: relative;
  flex: 1;
  min-height: 0;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}

.rb-hmt-carousel__card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rb-hmt-carousel__card-credit {
  position: absolute;
  right: 0;
  bottom: 0;
}

.rb-hmt-carousel__card-body {
  display: flex;
  height: 170px;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  border-radius: 0 0 16px 16px;
  background: var(--rb-grey);
  color: #fff;
}

@media (min-width: 768px) {
  .rb-hmt-carousel__card-body {
    gap: 16px;
    padding: 32px;
  }
}

.rb-hmt-carousel__card-body h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
}

@media (min-width: 768px) {
  .rb-hmt-carousel__card-body h3 {
    font-size: 24px;
  }
}

.rb-hmt-carousel__card-body p {
  margin: 0;
  font-size: 18px;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .rb-hmt-carousel__card-body p {
    font-size: 20px;
  }
}

.rb-hmt-carousel__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.rb-hmt-carousel__nav button {
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

/* ——— Callouts ——— */
.rb-hmt-callouts {
  background: var(--rb-dark);
  color: #fff;
}

.rb-hmt-callouts__inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 64px 24px;
}

@media (min-width: 768px) {
  .rb-hmt-callouts__inner {
    flex-direction: row;
    gap: 100px;
    padding: 120px;
  }
}

.rb-hmt-callouts__copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (min-width: 768px) {
  .rb-hmt-callouts__copy {
    gap: 60px;
  }
}

.rb-hmt-callouts__copy h2 {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .rb-hmt-callouts__copy h2 {
    font-size: 60px;
    line-height: 60px;
  }
}

.rb-hmt-callouts__copy p {
  margin: 0;
  font-size: 18px;
  line-height: 28px;
}

.rb-hmt-callouts__grid {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .rb-hmt-callouts__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .rb-hmt-callouts__grid {
    width: 520px;
    flex-shrink: 0;
    gap: 20px;
  }
}

.rb-hmt-callout {
  display: flex;
  min-height: 140px;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border-radius: 16px;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
}

@media (min-width: 768px) {
  .rb-hmt-callout {
    min-height: 160px;
    font-size: 24px;
  }
}

/* ——— Engineered ——— */
.rb-hmt-engineered {
  background: #fff;
}

.rb-hmt-engineered__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 64px 24px;
}

@media (min-width: 768px) {
  .rb-hmt-engineered__inner {
    flex-direction: row;
    gap: 100px;
    padding: 120px;
  }
}

.rb-hmt-engineered__intro {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 768px) {
  .rb-hmt-engineered__intro {
    width: 465px;
    flex-shrink: 0;
    gap: 32px;
  }
}

.rb-hmt-engineered__intro h2 {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--rb-dark);
}

@media (min-width: 768px) {
  .rb-hmt-engineered__intro h2 {
    font-size: 60px;
    line-height: 60px;
  }
}

.rb-hmt-engineered__intro p {
  margin: 0;
  font-size: 18px;
  line-height: 28px;
  color: var(--rb-dark);
}

.rb-hmt-engineered__list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.rb-hmt-engineered__item h3 {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 600;
  line-height: 30px;
  color: var(--rb-dark);
}

@media (min-width: 768px) {
  .rb-hmt-engineered__item h3 {
    font-size: 26px;
  }
}

.rb-hmt-engineered__item p {
  margin: 0;
  font-size: 18px;
  line-height: 1.4;
  color: var(--rb-dark);
}

.rb-hmt-engineered__item.has-border {
  padding-bottom: 24px;
  border-bottom: 1.5px solid var(--rb-red);
}

/* ——— Center CTA ——— */
.rb-hmt-center-cta {
  background: #eee;
}

.rb-hmt-center-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 64px 24px;
  text-align: center;
}

@media (min-width: 768px) {
  .rb-hmt-center-cta__inner {
    gap: 60px;
    padding: 120px;
  }
}

.rb-hmt-center-cta__inner h2 {
  max-width: 700px;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--rb-red);
}

@media (min-width: 768px) {
  .rb-hmt-center-cta__inner h2 {
    font-size: 60px;
    line-height: 60px;
  }
}

.rb-hmt-center-cta__inner p {
  max-width: 700px;
  margin: 0;
  font-size: 18px;
  line-height: 28px;
  color: var(--rb-dark);
}

/* ——— Nationwide ——— */
.rb-hmt-nationwide {
  background: #eee;
}

.rb-hmt-nationwide__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 64px 24px;
}

@media (min-width: 768px) {
  .rb-hmt-nationwide__inner {
    gap: 60px;
    padding: 80px 120px;
  }
}

.rb-hmt-nationwide__inner > h2 {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--rb-red);
}

@media (min-width: 768px) {
  .rb-hmt-nationwide__inner > h2 {
    font-size: 60px;
    line-height: 60px;
  }
}

.rb-hmt-nationwide__grid {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}

@media (min-width: 768px) {
  .rb-hmt-nationwide__grid {
    flex-direction: row;
    gap: 60px;
  }
}

.rb-hmt-nationwide__copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width: 768px) {
  .rb-hmt-nationwide__copy {
    gap: 60px;
  }
}

.rb-hmt-nationwide__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.rb-hmt-nationwide__text p {
  margin: 0;
  font-size: 18px;
  line-height: 28px;
  color: var(--rb-dark);
}

@media (min-width: 768px) {
  .rb-hmt-nationwide__text p {
    font-size: 20px;
  }
}

.rb-hmt-nationwide__cta {
  align-self: flex-start;
  width: fit-content;
  max-width: 100%;
  height: auto;
  min-height: 48px;
  padding-top: 12px;
  padding-bottom: 14px;
  text-align: center;
  white-space: normal;
}

.rb-hmt-nationwide__map-wrap {
  width: 100%;
  max-width: 560px;
  flex-shrink: 0;
}

.rb-hmt-nationwide__map,
.elementor .rb-hmt-nationwide__map {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

/* ——— Partner ——— */
.rb-hmt-partner {
  background: var(--rb-dark);
  color: #fff;
}

.rb-hmt-partner__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 64px 24px;
}

@media (min-width: 768px) {
  .rb-hmt-partner__inner {
    flex-direction: row;
    align-items: center;
    gap: 64px;
    padding: 120px;
  }
}

.rb-hmt-partner__copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.rb-hmt-partner__copy h2 {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .rb-hmt-partner__copy h2 {
    font-size: 60px;
    line-height: 60px;
  }
}

.rb-hmt-partner__copy h2 span {
  color: var(--rb-red);
}

.rb-hmt-partner__copy p {
  margin: 0;
  font-size: 18px;
  line-height: 28px;
}

@media (min-width: 768px) {
  .rb-hmt-partner__copy p {
    font-size: 20px;
  }
}

.rb-hmt-partner__logos {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

@media (min-width: 640px) {
  .rb-hmt-partner__logos {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .rb-hmt-partner__logos {
    width: auto;
    flex-direction: column;
    flex-shrink: 0;
  }
}

.rb-hmt-partner__logos img,
.elementor .rb-hmt-partner__logos img {
  display: block;
  width: auto;
  max-width: 280px;
  height: auto;
  object-fit: contain;
}

/* ——— Sustainability block ——— */
.rb-hmt-sustain {
  background: #fff;
}

.rb-hmt-sustain__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 64px 24px;
}

@media (min-width: 768px) {
  .rb-hmt-sustain__inner {
    gap: 48px;
    padding: 120px;
  }
}

.rb-hmt-sustain__inner > h2 {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
  color: #6e8340;
}

@media (min-width: 768px) {
  .rb-hmt-sustain__inner > h2 {
    font-size: 60px;
    line-height: 60px;
  }
}

.rb-hmt-sustain__grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width: 768px) {
  .rb-hmt-sustain__grid {
    flex-direction: row;
    gap: 48px;
  }
}

.rb-hmt-sustain__media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

@media (min-width: 768px) {
  .rb-hmt-sustain__media {
    width: 480px;
    flex-shrink: 0;
  }
}

.rb-hmt-sustain__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rb-hmt-sustain__blocks {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .rb-hmt-sustain__blocks {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

.rb-hmt-sustain__block h3 {
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 600;
  line-height: 28px;
  color: var(--rb-dark);
}

.rb-hmt-sustain__block p {
  margin: 0;
  font-size: 18px;
  line-height: 28px;
  color: var(--rb-dark);
}

/* ——— Final CTA ——— */
.rb-hmt-final-cta {
  position: relative;
  overflow: hidden;
}

.rb-hmt-final-cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.rb-hmt-final-cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.rb-hmt-final-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 80px 24px;
  text-align: center;
  color: #fff;
}

@media (min-width: 768px) {
  .rb-hmt-final-cta__inner {
    gap: 48px;
    padding: 120px;
  }
}

.rb-hmt-final-cta__inner h2 {
  max-width: 1000px;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .rb-hmt-final-cta__inner h2 {
    font-size: 60px;
    line-height: 60px;
  }
}

.rb-hmt-final-cta__inner p {
  max-width: 800px;
  margin: 0;
  font-size: 18px;
  line-height: 28px;
}

@media (min-width: 768px) {
  .rb-hmt-final-cta__inner p {
    font-size: 20px;
  }
}
