body {
  color: #21302a;
  background: #fcfcfa;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  
}
.profile-levels-compact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.profile-level-card {
  border: 1px solid #dce8e1;
  border-radius: 1.25rem;
  padding: 1.4rem;
  background: #fff;
}

.profile-level-card.is-featured {
  background: #f8fbf9;
}

.profile-level-card.is-complete {
  background: linear-gradient(180deg, #f5faf7 0%, #edf6f1 100%);
  border-color: #b9d5c7;
  box-shadow: 0 10px 28px rgba(47, 111, 87, 0.08);
}

.level-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  margin-bottom: 1.1rem;
}

.level-number {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #e8f0eb;
  color: #2f6f57;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.level-label {
  font-size: .75rem;
  font-weight: 700;
  color: #2f6f57;
  background: #edf5f0;
  border-radius: 999px;
  padding: .35rem .65rem;
  white-space: nowrap;
}

.profile-level-card h3 {
  font-size: 1.45rem;
  line-height: 1.1;
  margin-bottom: .6rem;
  color: #183229;
}

.profile-level-card p {
  color: #66777d;
  font-size: .95rem;
  line-height: 1.45;
  margin-bottom: 1rem;
}

.profile-level-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.profile-level-card li {
  position: relative;
  padding-left: 1.3rem;
  margin-bottom: .45rem;
  color: #55656b;
  font-size: .9rem;
  line-height: 1.35;
}

.profile-level-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2f6f57;
  font-weight: 700;
}

.profile-note {
  border: 1px solid #dce8e1;
  border-radius: 1rem;
  background: #f7faf8;
  padding: 1.2rem 1.4rem;
  color: #66777d;
  line-height: 1.5;
}

.profile-note strong {
  color: #183229;
}

@media (max-width: 1199px) {
  .profile-levels-compact {
    grid-template-columns: 1fr;
  }
}
