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

.client-card.featured {
  position: relative;
  border: 2px solid #a9d94d;
  background: linear-gradient(155deg, #ffffff 0%, #fbfff3 100%);
  box-shadow: 0 22px 55px rgba(93, 132, 48, 0.16);
  transform: none;
  overflow: hidden;
}

.client-card.featured::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  inset-inline-end: -70px;
  top: -72px;
  border-radius: 50%;
  background: rgba(201, 243, 106, 0.25);
  pointer-events: none;
}

.featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  margin-top: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #41611f;
  background: #eaf6d9;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .05em;
}

.featured-badge::before {
  content: "★";
  color: #75a42e;
}

.badge-placeholder { visibility: hidden; }

.legacy-card .download-cta { margin-top: 11px; }

.download-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 16px 0 15px;
  padding: 13px 15px;
  border-radius: 13px;
  color: #fff;
  background: #17231d;
  box-shadow: 0 10px 22px rgba(23, 35, 29, .2);
  font-size: 13px;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.download-cta span {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 8px;
  color: #17231d;
  background: #c9f36a;
  font-size: 15px;
}

.download-cta:hover {
  color: #17231d;
  background: #c9f36a;
  box-shadow: 0 14px 28px rgba(131, 174, 58, .24);
  transform: translateY(-2px);
}

.download-cta:hover span { background: #fff; }

.client-card.featured .client-link { margin-top: auto; }

.brand-mark {
  padding: 3px;
  object-fit: contain;
  background: linear-gradient(145deg, #edf5ff, #dcecff);
}

.client-logo {
  overflow: hidden;
  padding: 5px;
}

.client-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 640px) {
  .client-grid { grid-template-columns: 1fr; }
  .client-card.featured { transform: none; }
}
