.rb-page {
  --rb-green: #2e4f20;
  --rb-ink: #1f2b20;
  --rb-muted: #526154;
  --rb-line: #dbe6da;
  --rb-soft: #f3f7f1;
  padding: 50px 0 60px;
}

.rb-container {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.rb-hero {
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rb-line);
}

.rb-kicker {
  margin: 0 0 8px;
  color: var(--rb-green);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.82rem;
}

.rb-hero h1 {
  margin: 0 0 12px;
  color: var(--rb-green);
  font-size: clamp(1.8rem, 1.3rem + 1.2vw, 2.5rem);
  line-height: 1.2;
  max-width: 28ch;
}

.rb-hero p {
  margin: 0 0 10px;
  color: var(--rb-ink);
  line-height: 1.75;
}

.rb-hero a {
  color: var(--rb-green);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.rb-hero a:hover {
  text-decoration: none;
}

.rb-cta {
  margin-bottom: 16px;
  padding: 16px 14px;
  border-radius: 14px;
  border: 0;
  background: linear-gradient(180deg, #fff, #fbfdf9);
  box-shadow: 0 1px 0 var(--rb-line);
}

.rb-cta h2 {
  margin: 0 0 8px;
  color: var(--rb-green);
  font-size: clamp(1.14rem, 1.02rem + 0.42vw, 1.36rem);
  line-height: 1.3;
}

.rb-cta p {
  margin: 0 0 10px;
  color: var(--rb-ink);
  line-height: 1.72;
}

.rb-cta-list {
  margin: 0 0 12px;
  padding-left: 1.2rem;
}

.rb-cta-list li {
  margin-bottom: 6px;
  color: var(--rb-ink);
}

.rb-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
}

.rb-btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  border-radius: 9px;
  padding: 10px 14px;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
}

.rb-btn--primary {
  background: var(--rb-green);
  color: #fff;
  border: 1px solid var(--rb-green);
}

.rb-btn--primary:hover {
  background: #264119;
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(46, 79, 32, 0.2);
}

.rb-btn--ghost {
  background: #fff;
  color: var(--rb-green);
  border: 1px solid #c9d9c4;
}

.rb-btn--ghost:hover {
  background: var(--rb-soft);
}

.rb-btn:focus-visible {
  outline: 2px solid var(--rb-green);
  outline-offset: 2px;
}

.rb-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 14px;
  padding: 14px 2px 16px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--rb-line);
}

.rb-copy h2 {
  margin: 0 0 9px;
  color: var(--rb-green);
  line-height: 1.3;
  font-size: clamp(1.18rem, 1.05rem + 0.42vw, 1.4rem);
}

.rb-copy p {
  margin: 0 0 10px;
  color: var(--rb-ink);
  line-height: 1.72;
}

.rb-copy ul {
  margin: 0;
  padding-left: 1.2rem;
}

.rb-copy li {
  margin-bottom: 8px;
  color: var(--rb-ink);
  line-height: 1.68;
}

.rb-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-content: start;
}

.rb-cards--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rb-card {
  display: block;
  text-decoration: none;
  border: 0;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(180deg, #fff, #fbfdf9);
  box-shadow: 0 1px 0 var(--rb-line);
  transition: transform .2s ease, box-shadow .2s ease;
}

.rb-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.rb-card:focus-visible {
  outline: 2px solid var(--rb-green);
  outline-offset: 3px;
}

.rb-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #fff;
}

.rb-card span {
  display: block;
  padding: 9px 9px 11px;
  color: var(--rb-green);
  text-align: center;
  font-weight: 600;
  line-height: 1.35;
  font-size: 0.92rem;
}

@media (max-width: 1024px) {
  .rb-block {
    grid-template-columns: 1fr;
  }

  .rb-cards--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .rb-page {
    padding: 50px 0 50px;
  }

  .rb-container {
    width: min(1200px, calc(100% - 24px));
  }

  .rb-cta {
    padding: 14px 12px;
  }

  .rb-block {
    padding: 12px 0 14px;
    gap: 12px;
  }

  .rb-cards,
  .rb-cards--three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .rb-cards,
  .rb-cards--three {
    grid-template-columns: 1fr;
  }
}
