.planting-lessons {
  background: #fbfaf2;
  padding: 88px 0 96px;
  position: relative;
  overflow: hidden;
}

.planting-lessons::before {
  content: '';
  position: absolute;
  right: -140px;
  top: -160px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(111, 190, 79, 0.16);
  pointer-events: none;
}

.planting-lessons__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

.planting-lessons__header {
  max-width: 620px;
  margin-bottom: 48px;
}

.planting-lessons__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2d6b40;
  margin-bottom: 14px;
}

.planting-lessons__label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: #6fbe4f;
  flex-shrink: 0;
}

.planting-lessons__heading {
  margin: 0;
  font-family: 'Work Sans', Arial, sans-serif;
  font-size: clamp(1.85rem, 3.5vw, 2.65rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #102d1b;
}

.planting-lessons__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.planting-lessons__item {
  min-width: 0;
}

.planting-step {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(45, 107, 64, 0.12);
  box-shadow: 0 18px 48px rgba(15, 45, 25, 0.08);
}

.planting-step__visual {
  height: 160px;
  background: linear-gradient(135deg, #eaf6e7 0%, #dcefcf 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.planting-step__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.planting-step__icon {
  width: 88px;
  height: 88px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.72);
  color: #096542;
  box-shadow: inset 0 0 0 1px rgba(45, 107, 64, 0.12);
}

.planting-step__icon svg {
  width: 48px;
  height: 48px;
}

.planting-step__body {
  flex: 1;
  padding: 22px 22px 24px;
}

.planting-step__number {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Work Sans', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: #6fbe4f;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}

.planting-step__number::after {
  content: '';
  width: 32px;
  height: 2px;
  background: #096542;
  opacity: 0.45;
}

.planting-step__title {
  margin: 0;
  font-family: 'Work Sans', Arial, sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.45;
  color: #102d1b;
}

@media (max-width: 1024px) {
  .planting-lessons__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .planting-step__visual {
    height: 200px;
  }

  .planting-step__title {
    font-size: 1.05rem;
  }
}

@media (max-width: 640px) {
  .planting-lessons {
    padding: 64px 0 72px;
  }

  .planting-lessons__container {
    padding: 0 20px;
  }

  .planting-lessons__header {
    margin-bottom: 32px;
  }

  .planting-lessons__list {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .planting-step {
    border-radius: 14px;
  }

  .planting-step__visual {
    height: 180px;
  }

  .planting-step__body {
    padding: 22px 22px 24px;
  }
}
