.recognition {
  margin-block: clamp(1.8rem, 5vw, 4rem) var(--section-y);
  padding: clamp(2.2rem, 7vw, 5.5rem);
  border: 1px solid rgba(107, 79, 58, 0.1);
  border-radius: var(--radius-large);
  background: linear-gradient(180deg, rgba(239, 232, 224, 0.96), rgba(248, 246, 243, 0.78));
  box-shadow: var(--shadow-soft);
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
}

.check-card {
  position: relative;
  min-width: 0;
  min-height: 7.2rem;
  padding: 1.35rem 1.2rem 1.3rem 3.35rem;
  border: 1px solid rgba(107, 79, 58, 0.12);
  border-radius: var(--radius);
  color: var(--color-deep);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: var(--shadow-card);
  font-weight: 700;
  line-height: 1.45;
  overflow-wrap: break-word;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.check-card::before {
  content: "";
  position: absolute;
  left: 1.18rem;
  top: 1.45rem;
  width: 1.25rem;
  height: 1.25rem;
  border: 1px solid rgba(183, 118, 94, 0.5);
  border-radius: 50%;
}

.check-card::after {
  content: "";
  position: absolute;
  left: 1.56rem;
  top: 1.68rem;
  width: 0.38rem;
  height: 0.68rem;
  border-right: 2px solid var(--color-terracotta);
  border-bottom: 2px solid var(--color-terracotta);
  transform: rotate(42deg);
}

.check-card:hover {
  transform: translateY(-4px);
  border-color: rgba(183, 118, 94, 0.34);
  box-shadow: 0 22px 56px rgba(67, 45, 31, 0.1);
}

.benefits-section {
  padding-block: var(--section-y);
  background: var(--color-bg);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
}

.benefit-card {
  min-width: 0;
  min-height: 10rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(1.25rem, 3vw, 1.7rem);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-card);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(183, 118, 94, 0.34);
  box-shadow: 0 22px 56px rgba(67, 45, 31, 0.1);
}

.benefit-card span {
  color: var(--color-terracotta);
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 700;
  line-height: 1;
}

.benefit-card strong {
  color: var(--color-deep);
  font-size: clamp(0.98rem, 1.5vw, 1.08rem);
  line-height: 1.4;
}
