.commercial-cta {
  padding-block: 6vi;
  background: var(--color-white);
}

.commercial-cta__inner {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Top row */
.commercial-cta__top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(26, 26, 26, 0.1);
  border-bottom: 1px solid rgba(26, 26, 26, 0.1);
}

.commercial-cta__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 42px 0;
  padding-right: 48px;
}

.commercial-cta__heading {
  font-size: clamp(1.5rem, 1rem + 2.5vw, 3rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--color-text);
}

.commercial-cta__subtitle {
  font-size: clamp(0.875rem, 0.6rem + 0.7vw, 1.25rem);
  line-height: 1.5;
  color: var(--color-text);
  opacity: 0.8;
}

.commercial-cta__badge-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid rgba(26, 26, 26, 0.1);
  padding: 32px;
}

.commercial-cta__badge-cell img {
  max-height: 200px;
  width: auto;
}

/* Bottom row */
.commercial-cta__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
}

.commercial-cta__payment-methods img {
  height: 33px;
  width: auto;
}

.commercial-cta__platform-badges {
  display: flex;
  gap: 8px;
}

.commercial-cta__platform-badges img {
  height: 56px;
  width: auto;
}

@media (max-width: 768px) {
  .commercial-cta__top {
    grid-template-columns: 1fr;
  }

  .commercial-cta__badge-cell {
    border-left: none;
    border-top: 1px solid rgba(26, 26, 26, 0.1);
    padding: 24px;
  }

  .commercial-cta__header {
    padding-right: 0;
  }

  .commercial-cta__bottom {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
}
