.cc-grid { display: grid; gap: 1.25rem; margin: 1.5rem 0; }
.cc-grid-cols-1 { grid-template-columns: 1fr; }
.cc-grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.cc-grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.cc-gap-tight { gap: 0.75rem; }
.cc-gap-loose { gap: 2rem; }
@media (max-width: 900px) {
  .cc-grid-cols-2, .cc-grid-cols-3 { grid-template-columns: 1fr; }
}

.cc-card {
  display: grid;
  grid-template-columns: 240px 1fr 220px;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem 1.75rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s, transform 0.2s;
}
.cc-card:hover { box-shadow: 0 8px 20px rgba(37,99,235,0.10); transform: translateY(-2px); }
.cc-card-highlight { border-color: #2563eb; border-width: 2px; box-shadow: 0 4px 14px rgba(37,99,235,0.12); }

.cc-card-side {
  display: flex; flex-direction: column; gap: 0.5rem; align-items: flex-start;
}
.cc-logo { width: 100%; height: 60px; display: flex; align-items: center; justify-content: flex-start; margin-bottom: 0.5rem; }
.cc-logo-img { max-width: 200px; max-height: 60px; width: auto; height: auto; object-fit: contain; }
.cc-logo-text {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: #f1f5f9; color: #2563eb;
  font-size: 1.6rem; font-weight: 800;
  border-radius: 10px;
}
.cc-logo-icon {
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  font-size: 2.2rem;
  border-radius: 14px;
  line-height: 1;
}
.cc-name { margin: 0; font-size: 1.15rem; font-weight: 700; color: #0f172a; line-height: 1.25; }
.cc-badge {
  display: inline-block;
  padding: 0.18rem 0.6rem;
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em;
  border-radius: 999px;
}
.cc-badge-blue   { background: #dbeafe; color: #1e3a8a; }
.cc-badge-green  { background: #dcfce7; color: #166534; }
.cc-badge-amber  { background: #fef3c7; color: #854d0e; }
.cc-badge-red    { background: #fee2e2; color: #991b1b; }
.cc-badge-slate  { background: #f1f5f9; color: #334155; }

.cc-rating { display: flex; flex-wrap: wrap; align-items: center; gap: 0.35rem; margin-top: 0.3rem; font-size: 0.85rem; color: #475569; }
.cc-star { font-size: 1rem; line-height: 1; }
.cc-star-full  { color: #f59e0b; }
.cc-star-half  { color: #f59e0b; opacity: 0.6; }
.cc-star-empty { color: #cbd5e1; }
.cc-rating-num { font-weight: 600; color: #0f172a; }
.cc-reviews { color: #94a3b8; }

.cc-card-body { min-width: 0; }
.cc-features {
  margin: 0; padding: 0; list-style: none;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem 1.2rem;
}
.cc-features li {
  position: relative; padding-left: 1.4rem;
  font-size: 0.9rem; color: #334155; line-height: 1.4;
}
.cc-features li:before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: #16a34a; font-weight: 800;
}

.cc-card-foot {
  display: flex; flex-direction: column;
  align-items: stretch; justify-content: center; gap: 0.7rem;
}
.cc-price { text-align: center; }
.cc-price-value { display: block; font-size: 1.5rem; font-weight: 800; color: #0f172a; line-height: 1.1; }
.cc-price-note  { display: block; font-size: 0.75rem; color: #64748b; margin-top: 0.2rem; }
.cc-cta {
  display: block; text-align: center;
  padding: 0.75rem 1.4rem;
  background: #2563eb; color: #fff !important;
  font-weight: 600; font-size: 0.92rem;
  text-decoration: none !important;
  border-radius: 8px;
  transition: background 0.15s;
}
.cc-cta:hover { background: #1d4ed8; }

@media (max-width: 900px) {
  .cc-card { grid-template-columns: 1fr; gap: 1rem; padding: 1.25rem; text-align: center; }
  .cc-card-side { align-items: center; text-align: center; }
  .cc-logo { justify-content: center; }
  .cc-features { grid-template-columns: 1fr; text-align: left; }
  .cc-card-foot { width: 100%; align-items: stretch; }
}
