/* ===== RBX SERVICE CARDS (scoped to .rbx-svc) ===== */
.rbx-svc {
  --ink: #0f172a;
  --muted: #5f6b7a;
  --card: #ffffff;
  --line: #e9eef4;
  --check: #12616E;   /* unified brand color */
  --btn: #12616E;     /* unified brand color */

  font-family: inherit;
  background: #f2fdf9; /* soft mint background */
  padding: clamp(28px, 5vw, 64px) 16px;
}

.rbx-svc .rbx-svc__wrap {
  max-width: 1200px;
  margin: 0 auto;
}

/* Title + Lead */
.rbx-svc .rbx-svc__title {
  text-align: center;
  margin: 0 0 6px;
  font-weight: 900;
  font-size: clamp(26px, 4.8vw, 40px);
  color: var(--ink);
}

.rbx-svc .rbx-svc__lead {
  text-align: center;
  color: var(--muted);
  margin: 0 0 22px;
  font-size: clamp(14px, 1.6vw, 18px);
}

/* Grid Layout */
.rbx-svc .rbx-svc__grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1024px) {
  .rbx-svc .rbx-svc__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .rbx-svc .rbx-svc__grid { grid-template-columns: 1fr; }
}

/* Card */
.rbx-svc .rbx-svc__card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 6px 16px rgba(15, 23, 42, .06);
  padding: 20px;
  transition: transform .18s ease, box-shadow .18s ease;
  text-align: center;
}

.rbx-svc .rbx-svc__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(15, 23, 42, .12);
}

/* Icon */
.rbx-svc .rbx-svc__top {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.rbx-svc .rbx-svc__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #e4f5f2;  /* soft mint tone (no gradient) */
  color: var(--check);
  transition: background .2s ease, transform .15s ease;
}

.rbx-svc .rbx-svc__icon:hover {
  background: #d8efea;
  transform: translateY(-2px);
}

.rbx-svc .rbx-svc__icon svg {
  width: 26px;
  height: 26px;
}

/* Text */
.rbx-svc .rbx-svc__name {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
}

.rbx-svc .rbx-svc__desc {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

/* List */
.rbx-svc .rbx-svc__list {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}

.rbx-svc .rbx-svc__list li {
  font-size: 14px;
  color: #475569;
}

.rbx-svc .rbx-svc__list li::before {
  content: "✔";
  color: var(--check);
  margin-right: 6px;
}

/* Button */
.rbx-svc .rbx-svc__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 16px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  background: var(--btn); /* solid brand color */
  box-shadow: 0 6px 14px rgba(18, 97, 110, 0.25);
  transition: background .2s ease, transform .15s ease, box-shadow .25s ease;
}

.rbx-svc .rbx-svc__btn:hover {
  background: #1889A3; /* hover tint */
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(18, 97, 110, 0.35);
}
