.msa-products-grid {
  margin: var(--gap-md) 0;
}
/* ---------- Product cards v-long (vertical with bullets) ---------- */

.msa-products-grid--v-long {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap-lg);

  @media screen and (max-width: 768px) {
    grid-template-columns: repeat(1, 1fr);
  }
}

.msa-card-long {
  flex: 1 1 0;
  min-width: 0;
  background: var(--color-bg-secondary);
  border-radius: var(--radius-xl);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: var(--gap-md);
}

.msa-card-long__thumb {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 24px;
  overflow: hidden;
}

.msa-card-long__thumb a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.msa-card-long__img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  border-radius: 5px;
}

.msa-card-long__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  flex: 1;
}

.msa-card-long__info {
  display: flex;
  flex-direction: column;
  gap: var(--gap-sm);
}

.msa-card-long__title {
  font-size: var(--text-h3);
  font-weight: 600;
  line-height: var(--text-h3-lh);
  color: var(--color-text-alt);
  margin: 0;
}

.msa-card-long__title a {
  color: inherit;
  text-decoration: none;
}

.msa-card-long__title a:hover {
  color: var(--color-accent);
}

.msa-card-long__bullets {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.msa-card-long__bullet {
  display: flex;
  gap: var(--gap-xs);
  align-items: flex-start;
}

.msa-card-long__dot {
  width: 6px;
  height: 6px;
  min-width: 6px;
  border-radius: 5px;
  background: var(--color-error);
  margin-top: 8px;
}

.msa-card-long__bullet span:last-child {
  font-size: var(--text-body-sm);
  font-weight: 400;
  line-height: var(--text-body-sm-lh);
  color: var(--color-text-alt);
}

.msa-card-long__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.msa-card-long__price {
  font-size: var(--text-h2);
  font-weight: 600;
  line-height: var(--text-h2-lh);
  color: var(--color-text);
}

.msa-card-long__price del {
  font-size: var(--text-h3);
  font-weight: 500;
  color: var(--color-icon-gray);
  text-decoration: line-through;
  margin-right: var(--gap-sm);
}

.msa-card-long__price ins {
  text-decoration: none;
}

.msa-card-long__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 16px;
  border: 1px solid var(--color-error);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  font-size: var(--text-body);
  font-weight: 700;
  line-height: var(--text-btn-lh);
  color: var(--color-error);
  text-decoration: none;
  white-space: nowrap;
  transition:
    background 0.2s,
    color 0.2s;
}

.msa-card-long__btn:hover {
  background: var(--color-error);
  color: var(--color-white);
  font-weight: 700;
}

/* ---------- Product cards v-short (horizontal compact) ---------- */

.msa-products-grid--v-short {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap-lg);

  @media screen and (max-width: 768px) {
    grid-template-columns: repeat(1, 1fr);
  }
}

.msa-card-short {
  flex: 0 0 349px;
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  display: flex;
  gap: var(--gap-sm);
  align-items: center;

  @media screen and (max-width: 1100px) {
    flex: auto;
    width: 100%;
  }
}

.msa-card-short__thumb {
  flex-shrink: 0;
  width: 104px;
  height: 104px;
  border-radius: 5px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.msa-card-short__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.msa-card-short__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: var(--gap-sm);
}

.msa-card-short__title {
  font-size: var(--text-h3);
  font-weight: 600;
  line-height: var(--text-h3-lh);
  color: var(--color-text-alt);
  margin: 0;
}

.msa-card-short__title a {
  color: inherit;
  text-decoration: none;
}

.msa-card-short__title a:hover {
  color: var(--color-accent);
}

.msa-card-short__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.msa-card-short__price {
  font-size: var(--text-h2);
  font-weight: 600;
  line-height: var(--text-h2-lh);
  color: var(--color-text);
}

.msa-card-short__price del {
  font-size: var(--text-h3);
  font-weight: 500;
  color: var(--color-icon-gray);
  text-decoration: line-through;
  margin-right: var(--gap-xs);
}

.msa-card-short__price ins {
  text-decoration: none;
}

.msa-card-short__arrow {
  width: 48px;
  height: 48px;
  border: 1px solid var(--color-error);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s;
}

.msa-card-short__arrow:hover {
  background: var(--color-error);
}

.msa-card-short__arrow:hover svg path {
  stroke: var(--color-white);
}

/* ---------- Product cards v-registration ---------- */

.msa-products-grid--v-registration {
  display: flex;
  flex-direction: column;
  gap: var(--gap-md);
}

.msa-card-reg {
  display: flex;
  gap: var(--space-md);
  align-items: center;
  background: rgba(245, 67, 54, 0.04);
  border-radius: var(--radius-xl);
  padding: 20px;

  @media screen and (max-width: 768px) {
    flex-direction: column;
    align-items: stretch;
  }
}

.msa-card-reg__image {
  position: relative;
  flex-shrink: 0;
  width: 240px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 24px;
  align-self: stretch;

  background-image: url('https://myserviceanimal.org/wp-content/themes/USAPet/img/flag-bg.svg');
  background-size: contain;
  background-position: bottom;
  background-repeat: no-repeat;

  @media screen and (max-width: 768px) {
    width: 100%;
    padding: var(--space-md);
  }
}

.msa-card-reg__emblem {
  position: absolute;
  top: -40px;
  left: -40px;
  width: 80px;
  height: 80px;
  filter: drop-shadow(0 6px 14px rgba(26, 30, 38, 0.12));
  pointer-events: none;
  z-index: 1;
}

.msa-card-reg__emblem img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.msa-card-reg__thumb {
  display: flex;
  align-items: center;
  justify-content: center;
}

.msa-card-reg__product-img {
  width: 200px;
  height: auto;
  max-height: 200px;
  object-fit: contain;
  border-radius: var(--radius-sm);

  @media screen and (max-width: 768px) {
    width: 160px;
    max-height: 160px;
  }
}

.msa-card-reg__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.msa-card-reg__top {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-sm);

  @media screen and (max-width: 768px) {
    flex-direction: column;
  }
}

.msa-card-reg__main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.msa-card-reg__highlight {
  display: flex;
  align-items: center;
  gap: var(--gap-xs);
  font-size: var(--text-caption);
  font-weight: 500;
  line-height: 14px;
  color: var(--color-error);
  width: 100%;
}

.msa-card-reg__highlight svg {
  flex-shrink: 0;
}

.msa-card-reg__title {
  font-size: var(--text-h3);
  font-weight: 600;
  line-height: var(--text-h3-lh);
  color: var(--color-text-alt);
  margin: 0;
}

.msa-card-reg__title a {
  color: inherit;
  text-decoration: none;
  font-weight: inherit;
}

.msa-card-reg__title a:hover {
  color: var(--color-accent);
}

.msa-card-reg__stars {
  display: flex;
  gap: 2px;
}

.msa-card-reg__bullets {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.msa-card-reg__bullet {
  display: flex;
  gap: var(--gap-xs);
  align-items: flex-start;
}

.msa-card-reg__dot {
  width: 6px;
  height: 6px;
  min-width: 6px;
  border-radius: 5px;
  background: var(--color-error);
  margin-top: 4px;
}

.msa-card-reg__bullet span:last-child {
  font-size: var(--text-caption);
  font-weight: 400;
  line-height: 14px;
  color: var(--color-text-alt);
}

.msa-card-reg__side {
  flex-shrink: 0;
  width: 157px;
  display: flex;
  flex-direction: column;
  gap: var(--gap-xs);
  align-items: flex-end;

  @media screen and (max-width: 768px) {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap-sm);
  }
}

.msa-card-reg__price {
  font-size: 28px;
  font-weight: 600;
  line-height: 36px;
  color: var(--color-text);
  text-align: center;
  white-space: nowrap;
}

.msa-card-reg__price del {
  font-size: var(--text-h3);
  font-weight: 500;
  color: var(--color-icon-gray);
  text-decoration: line-through;
  margin-right: var(--gap-sm);
}

.msa-card-reg__price ins {
  text-decoration: none;
}

.msa-card-reg__badges {
  display: flex;
  flex-direction: column;
  gap: var(--gap-xs);
  align-items: flex-end;

  @media screen and (max-width: 768px) {
    flex-direction: row;
    order: -1;
    flex-wrap: wrap;
  }
}

.msa-card-reg__badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 50px;
  font-size: 10px;
  font-weight: 500;
  line-height: 12px;
  color: var(--color-text-tertiary);
  white-space: nowrap;

  @media screen and (min-width: 768px) {
    max-width: 157px;
    text-overflow: clip;
    overflow: hidden;
  }
}

.msa-card-reg__badge svg {
  flex-shrink: 0;
}

.msa-card-reg__payments {
  display: flex;
  gap: 6px;
  margin-top: auto;

  @media screen and (max-width: 768px) {
    margin-top: 0;
  }
}

.msa-card-reg__pay-icon {
  width: 38px;
  height: 24px;
  border: 0.5px solid var(--color-border);
  border-radius: 3px;
  background: var(--color-white);
  object-fit: contain;
  padding: 2px 4px;
}

.msa-card-reg__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--gap-sm);

  @media screen and (max-width: 768px) {
    flex-direction: row;
    justify-content: space-between;
  }
}

.msa-card-reg__actions .added_to_cart {
  display: none !important;
}

.msa-card-reg__link {
  font-size: var(--text-body-sm);
  font-weight: 600;
  line-height: var(--text-btn-lh);
  color: var(--color-accent);
  text-decoration: none;
  border-bottom: 1px solid var(--color-accent);
  transition:
    color 0.2s,
    border-color 0.2s;
}

.msa-card-reg__link:hover {
  font-weight: 600;
  border-color: var(--color-error);
  color: var(--color-error);
}

.msa-card-reg__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 var(--space-md);
  background: var(--color-error);
  border: 1px solid var(--color-error);
  border-radius: var(--radius-sm);
  font-size: var(--text-body);
  font-weight: 700;
  line-height: var(--text-btn-lh);
  color: var(--color-white);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}

.msa-card-reg__cta:hover {
  font-weight: 700;
  background: none;
  color: var(--color-error);
}

/* ── 300k trust block ── */

.msa-300k {
  position: relative;
  background: var(--color-bg-secondary);
  border-radius: var(--radius-xl);
  padding: var(--gap-md);
  display: flex;
  flex-direction: column;
  gap: var(--gap-xl);
  margin: calc(var(--gap-xxl) * 2) 0 var(--gap-xxl) 0;

  @media screen and (max-width: 768px) {
    padding: var(--space-md);
    gap: var(--gap-md);
    margin-top: var(--gap-xxl);
  }
}

.msa-300k__emblem {
  position: absolute;
  top: -70px;
  right: -100px;
  width: 225px;
  height: 149px;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: darken;

  @media screen and (max-width: 1440px) {
    top: -55px;
    right: 0;
  }

  @media screen and (max-width: 768px) {
    width: 130px;
    height: 86px;
    top: -30px;
    right: 0;
  }
}

.msa-300k__emblem img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.msa-300k__header {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.msa-300k__count {
  display: flex;
  align-items: center;
  gap: var(--gap-md);

  @media screen and (max-width: 768px) {
    gap: var(--gap-sm);
  }
}

.msa-300k__number {
  font-size: 64px;
  font-weight: 600;
  line-height: 1;
  color: #000;

  @media screen and (max-width: 768px) {
    font-size: 40px;
  }
}

.msa-300k__plus {
  width: 36px;
  height: 36px;

  @media screen and (max-width: 768px) {
    width: 24px;
    height: 24px;
  }
}

.msa-300k__plus svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.msa-300k__subtitle {
  font-size: var(--text-title);
  font-weight: 500;
  line-height: var(--text-title-lh);
  color: #000;
  margin: 0;

  @media screen and (max-width: 768px) {
    font-size: var(--text-body);
    line-height: var(--text-body-lh);
  }
}

.msa-300k__photo {
  width: 100%;
  overflow: hidden;
}

.msa-300k__photo-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.msa-300k__benefits {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: var(--gap-md);

  @media screen and (max-width: 768px) {
    flex-direction: column;
    gap: var(--gap-xs);
  }
}

.msa-300k__benefit {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  width: 250px;

  @media screen and (max-width: 768px) {
    width: 100%;
  }
}

.msa-300k__benefit-dot {
  width: 12px;
  height: 12px;
  min-width: 12px;
  background: var(--color-error);
  border-radius: 1px;
  margin-top: 14px;

  @media screen and (max-width: 768px) {
    margin-top: 8px;
  }
}

.msa-300k__benefit-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);

  @media screen and (max-width: 768px) {
    gap: var(--gap-xs);
  }
}

.msa-300k__benefit-title {
  font-size: var(--text-h1);
  font-weight: 600;
  line-height: var(--text-h1-lh);
  color: #000;

  @media screen and (max-width: 768px) {
    font-size: var(--text-title);
    line-height: var(--text-title-lh);
  }
}

.msa-300k__benefit-desc {
  font-size: var(--text-body);
  font-weight: 500;
  line-height: var(--text-body-lh);
  color: #000;

  @media screen and (max-width: 768px) {
    font-size: var(--text-body);
    line-height: var(--text-body-lh);
  }
}

/* ---------- MSA 300k Animated Banner ---------- */

.msa-300k-anim {
  position: relative;
  width: 100%;
  max-width: 1140px;
  height: 560px;
  background-color: #fafafa;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: var(--gap-xxl) auto;

  @media screen and (max-width: 768px) {
    height: 300px;
    transform: none;
    margin: var(--gap-xl) 0;
  }
}

.msa-300k-anim__center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: var(--gap-md);
  z-index: 2;

  @media screen and (max-width: 768px) {
    gap: var(--gap-xs);
  }
}

.msa-300k-anim__number {
  font-weight: 600;
  font-size: 100px;
  line-height: normal;
  color: var(--color-text);
  white-space: nowrap;

  @media screen and (max-width: 768px) {
    font-size: 48px;
  }
}

.msa-300k-anim__plus {
  width: 64px;
  height: 64px;
  flex-shrink: 0;

  @media screen and (max-width: 768px) {
    width: 32px;
    height: 32px;
  }
}

.msa-300k-anim__plus svg {
  width: 100%;
  height: 100%;
}

.msa-300k-anim__grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.msa-300k-anim__item {
  position: absolute;
  transition: opacity 0.5s ease;
  overflow: hidden;
  background-color: #fff;
}

.msa-300k-anim__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- Benefits List ---------- */
.msa-benefits-list-wrap {
  display: flex;
  flex-direction: column;
  gap: var(--gap-xl, 40px);
  width: 100%;
}

.msa-benefits-list {
  display: flex;
  gap: var(--gap-xl, 40px);
  align-items: center;
  width: 100%;

  @media screen and (max-width: 768px) {
    gap: var(--gap-lg, 32px);
  }
}

.msa-benefits-list--desktop-right {
  flex-direction: row;
}

.msa-benefits-list--desktop-left {
  flex-direction: row-reverse;
}

.msa-benefits-list__content {
  display: flex;
  flex: 1 0 0;
  flex-direction: column;
  gap: var(--gap-xl, 40px);
  padding-left: var(--gap-lg, 32px);

  @media screen and (max-width: 768px) {
    padding-left: 0;
    gap: var(--gap-md, 24px);
  }
}

.msa-benefits-list__item {
  display: flex;
  gap: var(--space-md, 16px);
  align-items: flex-start;
  width: 100%;
}

.msa-benefits-list__bullet-wrap {
  height: 24px;
  width: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.msa-benefits-list__bullet {
  width: 8px;
  height: 8px;
  background-color: var(--color-error, #f54336);
  border-radius: 5px;
}

.msa-benefits-list__text {
  display: flex;
  flex-direction: column;
  gap: var(--gap-sm, 12px);
  color: var(--color-text, #1a1e26);
  font-size: var(--text-body, 16px);
  line-height: var(--text-body-lh, 24px);
  text-align: left;
}

.msa-benefits-list__title {
  font-weight: 700;
}

.msa-benefits-list__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.msa-benefits-list__title a:hover {
  color: var(--color-error, #f54336);
}

.msa-benefits-list__desc {
  font-weight: 400;
}

.msa-benefits-list__desc a {
  color: inherit;
  text-decoration: underline;
}

.msa-benefits-list__image-wrapper {
  flex-shrink: 0;
  width: 400px;
  height: 400px;
  background-color: rgba(230, 67, 41, 0.04);
  border-radius: 200px;
  position: relative;
  overflow: hidden;

  @media screen and (max-width: 768px) {
    width: 100%;
    max-width: 400px;
    height: auto;
    aspect-ratio: 1;
    margin: 0 auto;
  }
}

.msa-benefits-list__image-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.msa-benefits-list__image {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

.msa-benefits-list__action {
  display: flex;
  justify-content: center;
  width: 100%;
}

.msa-benefits-list__action .msa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  height: 48px;
  min-width: 220px;
  border: 1px solid var(--color-error);
  border-radius: var(--radius-sm);
  background: var(--color-error);
  font-size: var(--text-body);
  color: var(--color-white);
  font-weight: 700;
  line-height: var(--text-btn-lh);
  padding: 0 var(--space-md);

  transition: all 0.3s ease;

  @media screen and (max-width: 768px) {
    width: 100%;
  }
}

.msa-benefits-list__action .msa-btn:hover {
  background: var(--color-white);
  color: var(--color-error);
}

@media screen and (max-width: 768px) {
  .msa-benefits-list--mobile-bottom {
    flex-direction: column;
  }

  .msa-benefits-list--mobile-top {
    flex-direction: column-reverse;
  }
}

/* ---------- Product Showcase ---------- */
.msa-product-showcase {
  width: 100%;
  margin: var(--gap-xl) 0;
}

.msa-product-showcase__inner {
  background-color: var(--color-bg-secondary, #fafafa);
  border-radius: var(--radius-xl, 20px);
  padding: var(--gap-lg, 32px);
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  min-height: 404px;

  @media screen and (max-width: 768px) {
    padding: var(--gap-md, 24px);
    justify-content: center;
    min-height: auto;
  }
}

.msa-product-showcase__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/shortcode/bg_flag_v1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  border-radius: var(--radius-xl, 20px);
}

.msa-product-showcase__content {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: center;

  @media screen and (max-width: 768px) {
    justify-content: center;
    margin-top: 20px;
  }
}

.msa-product-showcase__product {
  width: 100%;
  max-width: 547px;
  height: 340px;
  border-radius: var(--radius-lg, 16px);
  overflow: hidden;
  position: relative;

  @media screen and (max-width: 768px) {
    height: auto;
    aspect-ratio: 547/340;
  }
}

.msa-product-showcase__product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.msa-product-showcase__emblem {
  position: absolute;
  left: 199px;
  top: -44px;
  width: 140px;
  height: 140px;
  z-index: 2;
  overflow: hidden;

  @media screen and (max-width: 768px) {
    left: 50%;
    transform: translateX(-50%);
    top: -90px;
    width: 100px;
    height: 100px;
  }
}

.msa-product-showcase__emblem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Registrar Benefits ---------- */
.msa-registrar-benefits {
  width: 100%;
  padding-top: 100px;
  margin: var(--gap-xl) 0;

  @media screen and (max-width: 768px) {
    padding-top: 80px;
  }
}

.msa-registrar-benefits__inner {
  position: relative;
  border-radius: var(--radius-xl, 20px);
  padding: 155px var(--gap-md, 24px) var(--gap-md, 24px);
  width: 100%;

  @media screen and (max-width: 1024px) {
    padding: 80px var(--gap-sm, 12px) var(--gap-sm, 12px);
  }

  @media screen and (max-width: 768px) {
    padding: 60px var(--gap-sm, 12px) var(--gap-sm, 12px);
  }
}

.msa-registrar-benefits__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: var(--radius-xl, 20px);
  z-index: 0;
}

.msa-registrar-benefits__bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(94, 94, 94, 0.1);
  border-radius: var(--radius-xl, 20px);
}

.msa-registrar-benefits__content {
  position: relative;
  z-index: 1;
  display: flex;
  gap: var(--gap-md, 24px);
  align-items: stretch;
  justify-content: flex-end;
  width: 100%;

  @media screen and (max-width: 1024px) {
    flex-wrap: wrap;
  }
}

.msa-registrar-benefits__item {
  flex: 1 0 0;
  min-width: 0;

  @media screen and (max-width: 1024px) {
    flex: 1 1 calc(50% - 12px);
  }

  @media screen and (max-width: 768px) {
    flex: 1 1 100%;
  }
}

.msa-registrar-benefits__item-inner {
  background-color: var(--color-white, #fff);
  border-radius: var(--radius-md, 12px);
  padding: var(--space-md, 16px) var(--gap-sm, 12px);
  display: flex;
  flex-direction: column;
  gap: var(--space-md, 16px);
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;

  @media screen and (max-width: 768px) {
    gap: var(--gap-xs, 9px);
  }
}

.msa-registrar-benefits__header {
  display: flex;
  gap: var(--space-md, 16px);
  align-items: center;
  justify-content: center;
  width: 100%;
}

.msa-registrar-benefits__bullet-wrap {
  height: 39px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.msa-registrar-benefits__bullet {
  width: 12px;
  height: 12px;
  background-color: var(--color-error, #f54336);
  border-radius: 1px;
}

.msa-registrar-benefits__title {
  font-size: var(--text-h1, 32px);
  font-weight: 600;
  color: var(--color-text, #1a1e26);
  white-space: nowrap;

  @media screen and (max-width: 768px) {
    font-size: var(--text-title, 24px);
    line-height: var(--text-title-lh, 28px);
  }
}

.msa-registrar-benefits__desc {
  font-size: var(--text-body-sm, 14px);
  font-weight: 500;
  color: var(--color-text, #1a1e26);
  line-height: var(--text-body-sm-lh, 22px);
}

.msa-registrar-benefits__emblem {
  position: absolute;
  right: -95px;
  top: -70px;
  width: 225px;
  height: 149px;
  z-index: 2;

  @media screen and (max-width: 1024px) {
    right: 50%;
    top: -60px;
    transform: translateX(50%);
    width: 180px;
    height: 120px;
  }
}

.msa-registrar-benefits__emblem img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
