.plans-grid {
  grid-template-columns: 1fr;
  max-width: 560px;
}

.bonus-section {
  padding: 76px 0;
  background: linear-gradient(145deg, #0b2533, #123f55);
}

.bonus-section .section-intro h2,
.bonus-section .section-intro p {
  color: #fff;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.bonus-card {
  overflow: hidden;
  background: #fff;
  color: var(--ink);
  border: 1px solid #315b70;
  border-radius: 18px;
  padding: 14px 14px 22px;
  box-shadow: 0 18px 44px #0003;
}

.bonus-card > span {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--orange);
  color: #102c3a;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
}

.bonus-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
}

.bonus-card h3 {
  margin: 18px 4px 8px;
  font-size: 19px;
  line-height: 1.2;
}

.bonus-card p {
  margin: 0 4px;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 900px) {
  .bonus-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .bonus-section {
    padding: 56px 0;
  }

  .bonus-grid {
    grid-template-columns: 1fr;
  }
}
